View Conversion event


                https://api.ocamba.com/v2/adex/conversion-events/{id}
            

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


Name
Description
idstringrequired
Unique campaign group id.


Example: 1411

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[ events ]
An array of all created items.
Conversion Events
Name
Description
company_idstring
Company ID


Example: 6197120

conversionobject
The conversion object to which the event is connected

conversion_idstring
The ID of the conversion to which the event is connected.


Example: 13694

create_timedateTime
Timezone: GMT.


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

full_namestring
Event name


Example: Direct purchase

idstring
Event ID


Example: 2209735596

namestring
Name of the event


Example: purchase

partnerstring
Partner of the event


Example: Direct

systemnumber
Differentiates if the event was created by a User or a Microservice.


Example: 0

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 event id, list the events to find it.
200 Arrow
{
  "total": 1,
  "items": [
    {
      "id": "2209735596",
      "company_id": "6197120",
      "full_name": "Direct purchase",
      "partner": "direct",
      "name": "purchase",
      "system": 1,
      "create_time": "2023-07-31 07:24:30",
      "update_time": "2023-07-31 07:39:59"
    }
  ]
}
{
  "total": 1,
  "items": [
    {
      "id": "2209735596",
      "company_id": "6197120",
      "conversion_id": "13694",
      "full_name": "Direct purchase",
      "partner": "Direct",
      "name": "purchase",
      "system": 0,
      "create_time": "2021-10-29 15:40:10",
      "update_time": "2021-10-29 15:40:10"
    }
  ]
}