Skip to main content

Request

There are different request payloads determined for each module. However, all create and update endpoints contain a static schema.

For example, the create operation for the lead module includes a request payload as follows.

{
"data": {
"firstName": "John",
"lastName": "Doe",
"date": "2022-09-30T12:43:00.000Z"
},
"customFields": {
"customFieldString1": "Software Developer"
}
}

The basic variables of the module are found in the data section. Added custom fields should be in the customfields section.