action callfire_get_universal_do_not_contacts { label: "Find universal do not contacts (udnc) associated with toNumber" description: "Searches for a UniversalDoNotContact object for a given phone number. Shows whether inbound/outbound actions are allowed for a given number" provider: callfire method: GET path: "/contacts/dncs/universals/{toNumber}" encoding: json input: { type: "object" properties: { fields: { type: "string" } fromNumber: { type: "string" } toNumber: { type: "string" } } required: ["toNumber"] additionalProperties: false } output: { type: "object" description: "~" properties: { items: { type: "array" description: "~" items: { type: "object" description: "Represents a Universal (platform-wide) Do-Not-Contact object for a given phone number. Shows whether inbound/outbound actions are allowed for a given number." properties: { fromNumber: { type: "string" description: "Optional source number in E.164 format (11-digit). Example: 12132000384" } inboundCall: { type: "boolean" description: "If toNumber can receive calls or If toNumber can call fromNumber." } inboundText: { type: "boolean" description: "If toNumber can receive texts or If toNumber can text fromNumber." } outboundCall: { type: "boolean" description: "If toNumber can send calls or If fromNumber can call toNumber." } outboundText: { type: "boolean" description: "If toNumber can send texts or If fromNumber can text toNumber." } toNumber: { type: "string" description: "destination DNC number in E.164 format (11-digit). Example: 12132000384" } } } } } } }