Skip to main content

List team mappings

GET 

/v2/external/mappings

Returns all mappings for a team, paginated and filtered by the date.

Request

Query Parameters

    external_type string

    Filter by external type. Example: salesforce

    external_id string

    Filter by external id. Example: ABC1234

    object_type string

    Filter by SalesLoft object type. Example: person

    object_id integer

    Filter by SalesLoft object id. Example: 1343567

    deleted boolean

    Filter by deleted status. Example: true

    per_page integer

    How many records to show per page in the range [1, 100]. Defaults to 25

    page integer

    The current page to fetch results from. Defaults to 1

    include_paging_counts boolean

    Whether to include total_pages and total_count in the metadata. Defaults to false

    sort_by string

    Key to sort on, must be one of: id. Defaults to id

    sort_direction string

    Direction to sort in, must be one of: ASC, DESC. Defaults to DESC

Responses

Success

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.

Loading...