action callfire_post_call_campaign_sound { label: "Add sound via call" description: "Use this API to create a sound via a phone call. Provide the required phone number in the CallCreateSound object inside the request, and user will receive a call shortly after with instructions on how to record a sound over the phone." provider: callfire method: POST path: "/campaigns/sounds/calls" encoding: json input: { type: "object" properties: { fields: { type: "string" } name: { type: "string" description: "Name of a sound to create" } toNumber: { type: "string" description: "Phone number in E.164 11-digit format to call to record a sound. Example: 12132000384" } } additionalProperties: false } output: { type: "object" description: "Represents a sound recording from account's sound library which can be used in different API operations" properties: { created: { type: "integer" format: "int64" description: "The time when the given resource was created, formatted in unix time milliseconds (read only). Example: 1473781817000 for Sat, 05 Jan 1985 14:03:37 GMT" } duplicate: { type: "boolean" description: "True if the same sound file exists in a sound library of account" } id: { type: "integer" format: "int64" description: "An id of a sound file" } lengthInSeconds: { type: "integer" format: "int32" description: "Length of a sound in seconds" } name: { type: "string" description: "A name of a sound file" } status: { type: "string" description: "A current status of a sound, available values: UPLOAD - uploading is in progress, RECORDING - recording of sound is in progress, ACTIVE - sound is ready, FAILED, ARCHIVED - sound was archived, SCRUBBED - sound was scrubbed " enum: ["UPLOAD", "RECORDING", "ACTIVE", "ACTIVE_SYSTEM", "FAILED", "ARCHIVED", "SCRUBBED"] } } } }