Get integration fields
Get all fields available on the specified integration.
GET
This includes the mapping to your custom fields
Authorizations
Path Parameters
GET /integrations/:integration_id/integration-fields parameter
Query Parameters
An optional cursor string used for pagination. This can be retrieved from the next
property of the previous page response.
The number of results to return per page. Maximum is 2000.
Required range:
1 <= x <= 2000
Response
200
application/json
GET /integrations/:integration_id/integration-fields Successful response
Available options:
success
Example:
{
"results": [
{
"id": "FFpTK47GhXnU6QAopPq2bdos",
"key": "tax_id",
"model": "hris_employees",
"type": "DEFAULT",
"label": "Tax ID",
"is_passthrough_enabled": true,
"is_writable": true
}
],
"next_cursor": null,
"next": null
}