group of users pointing to a specific CRM instance
customizable workflow designed to extract, transform, and prepare CRM data for integration with other applications. Users can specify the CRM object (e.g., leads, opportunities) and define the fields required by the target system. Advanced transformations, such as validations, filtering and data quality checks, can be implemented using custom JavaScript. Mappings are created within a company and shared among all its users. The data retrieved through a mapping respects the access level and permissions of the individual user in the CRM.
curl -i -X POST \
'https://gridsquid.redocly.app/_mock/openapi/users/{user_id}/records/raw/{crm_object_name}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{}'
{}
curl -i -X GET \
'https://gridsquid.redocly.app/_mock/openapi/users/{user_id}/records/raw/{crm_object_name}?limit=100' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
curl -i -X GET \
'https://gridsquid.redocly.app/_mock/openapi/users/{user_id}/records/raw/{crm_object_name}/{record_id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{}
curl -i -X PATCH \
'https://gridsquid.redocly.app/_mock/openapi/users/{user_id}/records/raw/{crm_object_name}/{record_id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{}'
{}
curl -i -X DELETE \
'https://gridsquid.redocly.app/_mock/openapi/users/{user_id}/records/raw/{crm_object_name}/{record_id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'