TextIt integration (Communication, Marketing). Imported from open-connector.
https://textit.com/api/v2/workspace.json
/contacts.json
| Param | Type | Required | Description |
|---|---|---|---|
| uuid | string | optional | Filter by contact UUID. |
| urn | string | optional | Filter by contact URN. |
| group | string | optional | Filter by group name or UUID. |
| before | string | optional | Return contacts modified before this datetime. |
| after | string | optional | Return contacts modified after this datetime. |
| cursor | string | optional | The pagination cursor returned by a previous TextIt response. |
/contacts.json
| Param | Type | Required | Description |
|---|---|---|---|
| name | string | optional | The full name of the contact. |
| language | string | optional | The preferred language for the contact as a 3 letter ISO code. |
| urns | array | optional | URNs to associate with the contact. |
| groups | array | optional | Group UUIDs this contact should belong to. |
| fields | object | optional | TextIt contact field values keyed by contact field key. |
/contacts.json
| Param | Type | Required | Description |
|---|---|---|---|
| uuid | string | optional | The contact UUID to update. |
| urn | string | optional | The contact URN to update. |
| name | string | optional | The full name of the contact. |
| language | string | optional | The preferred language for the contact as a 3 letter ISO code. |
| urns | array | optional | URNs to associate with the contact. |
| groups | array | optional | Group UUIDs this contact should belong to. |
| fields | object | optional | TextIt contact field values keyed by contact field key. |
/contacts.json
| Param | Type | Required | Description |
|---|---|---|---|
| uuid | string | optional | The contact UUID. |
| urn | string | optional | The contact URN. |
/groups.json
| Param | Type | Required | Description |
|---|---|---|---|
| uuid | string | optional | Filter by group UUID. |
| name | string | optional | Filter by group name. |
| manualOnly | boolean | optional | Whether to only return manual groups. |
| cursor | string | optional | The pagination cursor returned by a previous TextIt response. |
/groups.json
| Param | Type | Required | Description |
|---|---|---|---|
| name | string | required | The group name. |
/groups.json
| Param | Type | Required | Description |
|---|---|---|---|
| uuid | string | required | The group UUID to update. |
| name | string | required | The new group name. |
/groups.json
| Param | Type | Required | Description |
|---|---|---|---|
| uuid | string | required | The group UUID. |
/messages.json
| Param | Type | Required | Description |
|---|---|---|---|
| uuid | string | optional | Filter by message UUID. |
| folder | string | optional | The message folder to list. |
| before | string | optional | Return messages created before this datetime. |
| after | string | optional | Return messages created after this datetime. |
| cursor | string | optional | The pagination cursor returned by a previous TextIt response. |
/messages.json
| Param | Type | Required | Description |
|---|---|---|---|
| contact | string | required | The UUID of the contact to message. |
| text | string | required | The message text. |
| attachments | array | optional | TextIt media object UUIDs to attach. |
| quick_replies | array | optional | Quick replies to include with the message. |
/broadcasts.json
| Param | Type | Required | Description |
|---|---|---|---|
| uuid | string | optional | Filter by broadcast UUID. |
| before | string | optional | Return broadcasts created before this datetime. |
| after | string | optional | Return broadcasts created after this datetime. |
| cursor | string | optional | The pagination cursor returned by a previous TextIt response. |
/broadcasts.json
| Param | Type | Required | Description |
|---|---|---|---|
| urns | array | optional | Recipient URNs for the broadcast. |
| contacts | array | optional | Recipient contact UUIDs for the broadcast. |
| groups | array | optional | Recipient group UUIDs for the broadcast. |
| text | object | required | Message text translations keyed by ISO-639-3 language code. |
| attachments | object | optional | Attachment media UUIDs keyed by ISO-639-3 language code. |
| quick_replies | object | optional | Quick replies keyed by ISO-639-3 language code. |
| base_language | string | optional | The default translation language as an ISO-639-3 code. |