action callfire_find_do_not_contacts { label: "Find do not contact (dnc) items" description: "Searches for all Do Not Contact (DNC) objects created by user. These DoNotContact entries only affect calls/texts/campaigns on this account. Returns a paged list of DoNotContact objects" provider: callfire method: GET path: "/contacts/dncs" encoding: json input: { type: "object" properties: { call: { type: "boolean" } campaignId: { type: "integer" format: "int64" } fields: { type: "string" } inboundCall: { type: "boolean" } inboundText: { type: "boolean" } limit: { type: "integer" format: "int32" } number: { type: "array" items: { type: "string" } } offset: { type: "integer" format: "int32" } prefix: { type: "string" } source: { type: "string" } text: { type: "boolean" } } additionalProperties: false } output: { description: "~" type: "object" } }