List team mappings
GET/v2/external/mappings
Returns all mappings for a team, paginated and filtered by the date.
Request
Query Parameters
Filter by external type. Example: salesforce
Filter by external id. Example: ABC1234
Filter by SalesLoft object type. Example: person
Filter by SalesLoft object id. Example: 1343567
Filter by deleted status. Example: true
How many records to show per page in the range [1, 100]. Defaults to 25
The current page to fetch results from. Defaults to 1
Whether to include total_pages and total_count in the metadata. Defaults to false
Key to sort on, must be one of: id. Defaults to id
Direction to sort in, must be one of: ASC, DESC. Defaults to DESC
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
ID of tenant.
The type of object in SalesLoft
The id of the object in SalesLoft
When this mapping was inserted
ID of the mapping
The type of external
External ID
Whether or not the mapping is deleted.
{
"tenant_id": 1234,
"object_type": "person",
"object_id": 1234,
"inserted_at": "2024-07-02",
"id": 42,
"external_type": "salesforce",
"external_id": "ABC123",
"deleted": false
}