AI Search

Get Deal Sync

This API allows you to retrieve the synchronization status of a deal between the InMobi platform and a connected DSP. It provides details like the proposal ID, name, revision number, and last sync timestamp.

Note

This API is applicable only for deals created for The Trade Desk (TTD) and DV360 DSPs.

API Endpoint

POST https://apis.demand.ssp.inmobi.com/v1/deals/sync

Parameters

Headers

Field Name Type Is mandatory (Y/N)? Description
Authorization String Y Bearer token for authentication (Bearer <token>)
X-USER-ID String Y The ID of the user making the request
X-INMOBI-ORG-ID String Y The organization ID associated with the user
Content-Type String Y Specifies the media type of the request body. Use: application/json

Request Body

Field Name Type Is mandatory (Y/N)? Description
rpDealId String Y The ID of the deal for which sync status is being fetched

Sample Request

curl -X POST "https://apis.demand.ssp.inmobi.com/v1/deals/sync" \
-H "Authorization: Bearer <your bearer token>" \
-H "X-USER-ID: <test app>" \
-H "X-INMOBI-ORG-ID: <your org id>" \
-H "Content-Type: application/json" \
-d '{ "rpDealId": "4263509454" }'

Sample Response

{
  "data": {
    "data": {
      "Sync Timestamp": "2025-06-26 08:58",
      "Proposal Id": 3491448,
      "Proposal Name": "TTD_SYNC_TEST_DEAL - Package",
      "Revision Number": 1
    }
  }
}

On This Page

Last Updated on: 18 Jul, 2025