action gsmtasks_contact_addresses_create { label: "contact_addresses_create" provider: gsmtasks method: POST path: "/contact_addresses/" encoding: form input: { type: "object" properties: { account: { type: "string" format: "uri" } address: { type: "object" required: ["geocode_failed_at", "geocoded_at"] properties: { apartment_number: { type: "string" } city: { type: "string" } country: { type: "string" } country_code: { type: "string" } formatted_address: { type: "string" } geocode_failed_at: { type: "string" format: "date-time" } geocoded_at: { type: "string" format: "date-time" } google_place_id: { type: "string" } house_number: { type: "string" } location: { type: "object" } point_of_interest: { type: "string" } postal_code: { type: "string" } raw_address: { type: "string" } state: { type: "string" } street: { type: "string" } } } client: { type: "string" format: "uri" } contact: { type: "object" properties: { company: { type: "string" } emails: { type: "array" items: { type: "string" } } name: { type: "string" } notes: { type: "string" } phones: { type: "array" items: { type: "string" } } } } created_at: { type: "string" format: "date-time" } external_id: { type: "string" } format: { type: "string" enum: ["json", "xlsx"] } id: { type: "string" format: "uuid" } is_orderer: { type: "boolean" } is_receiver: { type: "boolean" } source: { type: "string" } updated_at: { type: "string" format: "date-time" } url: { type: "string" format: "uri" } } required: ["account", "address", "contact", "created_at", "id", "updated_at", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }