View Conversion


                https://api.ocamba.com/v2/adex/conversions/{id}
            

Retrieves the details of a Conversion that has previously been created if a valid identifier was provided


Name
Description
idstringrequired
Unique identifier for the object defined as a path parameter.


Example: 12345

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


200 - OK
Arrow
Name
Description
items[ conversions ]
An array of all created items.
Conversions
Name
Description
account_idstring
Account ID


Example: 6197120

company_idstring
Company ID


Example: 6197120

create_timedateTime
Timezone: GMT.


Example: 2021-10-29 15:40:10

descriptionstring
Conversion Description


Example: The description of a Conversion has the max of 2000 characters

duplication_policynumber
Can be 0 or 1, if not passed, it will be set as 0


Example: pixel

event_counternumber
The count of the events bound to this Conversion


Example: 0

idstring
Conversions Unique Identifier


Example: 13472

methodstring
One of Conversion methods (s2s or pixel)


Example: 0

Possible values: s2s | pixel

namestring
Conversion Name


Example: Example Name

statusstring
Conversion Status can be active or inactive


Example: active

Possible values: active | inactive

update_timedateTime
Timezone: GMT.


Example: 2021-10-29 15:40:10

totalinteger
A total number of items.


Example: 1
tip
1 If you don't know the conversion id, list the conversions to find it.
200 Arrow
{
    "total": 1,
    "items": [
        {
            "id": "13694",
            "company_id": "6197120",
            "account_id": "6197120",
            "name": "Example",
            "status": "active",
            "method": "pixel",
            "duplication_policy": 0,
            "event_counter": 6,
            "create_time": "2023-07-31 06:12:31",
            "update_time": "2023-07-31 11:13:29"
        }
    ]
}
{
  "total": 1,
  "items": [
    {
      "id": "13472",
      "company_id": "6197120",
      "account_id": "6197120",
      "name": "Example Name",
      "description": "The description of a Conversion has the max of 2000 characters",
      "status": "active",
      "method": "0",
      "duplication_policy": null,
      "event_counter": 0,
      "create_time": "2021-10-29 15:40:10",
      "update_time": "2021-10-29 15:40:10"
    }
  ]
}