View External demand partner


                https://api.ocamba.com/v2/adex/external-demand-partners/{id}
            

Retrieves the details of an External demand partner that has previously been created if a valid identifier was provided


Name
Description
idstringrequired
external demand partner id.


Example: 116

Name
Description
fieldsstring
The client can request more efficient filtered representation of the resource showing only specific field(s), using the “fields” query parameter. Note that the “fields” parameter has precedence over the “view” parameter.

Example GET /VERSION/adex/RESOURCE_NAME?fields=id,name

See "Tips" for the list of filterable parameters.


Example: fields=field1,field2,field3

viewstring
Adex API returns full representation of the resource using the “view=full” query parameter. If not specified, the default view will be used.

Note that the “fields” parameter has precedence over the “view” parameter.


Example: view=full/default


200 - OK
Arrow
Name
Description
An array of all created items.
External demand partners
Name
Description
exchange_typestring
External demand type, possible values are rtb and native.


Example: rtb

idstring
A unique identifier generated by the Ocamba platform.


Example: 117

namestring
Name of the exchange.


Example: MyExchange

pricing_modelstring
External demand partner pricing model, possible values are cpc and cpm.


Example: cpc

settingsarray
Array of objects, integration settings. Required parameters defined and provided by the integration partner.


Example: [ { "label": "feed", "type": "string", "required": "1" }, { "label": "auth", "type": "string", "required": "1" } ]

totalinteger
A total number of items.


Example: 1
tip
1 If you don't know the external demand partner id, list the external demand partners to find it.
200 Arrow
{
  "total": 1,
  "items": [
      {
          "id": "116",
          "name": "Example - Pop CPC",
          "type": "native",
          "pricing_model": "cpc",
          "settings": [
              {
                  "label": "token",
                  "type": "string",
                  "required": "1"
              },
              {
                  "label": "ssp_id",
                  "type": "string",
                  "required": "1"
              },
              {
                  "label": "type",
                  "type": "string",
                  "required": "1"
              }
          ]
      }
  ]
}
{
  "total": 1,
  "items": [
    {
      "id": "117",
      "name": "MyExchange",
      "exchange_type": "rtb",
      "pricing_model": "cpc",
      "settings": "[\n  {\n      \"label\": \"feed\",\n      \"type\": \"string\",\n      \"required\": \"1\"\n  },\n  {\n      \"label\": \"auth\",\n      \"type\": \"string\",\n      \"required\": \"1\"\n  }\n]"
    }
  ]
}