action callfire_send_verification_code_to_caller_id { label: "Create a caller id" description: "Generates and sends a verification code to the phone number provided in the path. The verification code is delivered via a phone call. This code needs to be submitted to the verify caller id API endpoint to complete verification. For authentication use api credentials." provider: callfire method: POST path: "/me/callerids/{callerid}" encoding: json input: { type: "object" properties: { callerid: { type: "string" } } required: ["callerid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }