action callfire_update_do_not_contact { label: "Update an individual do not contact (dnc) number" description: "Update a Do Not Contact (DNC) contact entry. Can toggle whether the DNC is enabled for calls/texts." provider: callfire method: PUT path: "/contacts/dncs/{number}" encoding: json input: { type: "object" properties: { call: { type: "boolean" description: "A number on Do-Not-Call list" } campaignId: { type: "integer" format: "int64" description: "An Id of a campaign which was used to send a message to DNC number" } created: { type: "integer" format: "int64" description: "A time when a given resource was created, formatted in unix time milliseconds (read only). Example: 1473781817000 for Sat, 05 Jan 1985 14:03:37 GMT" } inboundCall: { type: "boolean" description: "~" } inboundText: { type: "boolean" description: "~" } number: { type: "string" } source: { type: "string" description: "The name of DNC source (can be the name of DNC list that user uploads to CallFire)" } text: { type: "boolean" description: "A number on Do-Not-Text list" } } required: ["number"] additionalProperties: false } output: { type: "object" additionalProperties: true } }