action clicksend_create_a_new_contact { label: "Create a new contact" description: "Note that the fields `phone_number`, `fax_number` and email` are all optional; however at least one of them must be specified, otherwise the API call will fail." provider: clicksend method: POST path: "/lists/{list_id}/contacts" encoding: json input: { type: "object" properties: { address_city: { type: "string" description: "Contact city." } address_country: { type: "string" description: "Contact two-letter country code defined in ISO 3166." } address_line_1: { type: "string" description: "Contact address line 1." } address_line_2: { type: "string" description: "Contact address line 2." } address_postal_code: { type: "string" description: "Contact postal code." } address_state: { type: "string" description: "Contact state." } custom_1: { type: "string" description: "Contact custom 1 text." } custom_2: { type: "string" description: "Contact custom 2 text." } custom_3: { type: "string" description: "Contact custom 3 text." } custom_4: { type: "string" description: "Contact custom 4 text." } email: { type: "string" description: "Contact email." } fax_number: { type: "string" description: "Contact fax number." } first_name: { type: "string" description: "Contact firstname." } last_name: { type: "string" description: "Contact lastname." } list_id: { type: "number" } organization_name: { type: "string" description: "Your organization name." } phone_number: { type: "string" description: "Contact phone number in E.164 format." } } required: ["list_id", "phone_number"] additionalProperties: false } output: { type: "object" additionalProperties: true } }