Create a mapping
POST/v2/external/mappings
Creates a mapping.
Request
- application/json
Body
required
object_type stringrequired
Filter by SalesLoft object type. Example: person
object_id integerrequired
Filter by SalesLoft object id. Example: 1343567
external_type stringrequired
Filter by external type. Example: salesforce
external_id stringrequired
Filter by external id. Example: 3456
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
tenant_id integer
ID of tenant.
object_type string
The type of object in SalesLoft
object_id integer
The id of the object in SalesLoft
inserted_at date
When this mapping was inserted
id integer
ID of the mapping
external_type string
The type of external
external_id string
External ID
deleted boolean
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
}
Loading...