Bidding
- API v1
- API v0
With the Bidding API, you can:
- Fetch the status of current bid uploads
- Upload bids
Bid upload workflow
Bidding operates as a distributed transaction. The sequential flow is as follows:
- You upload a bid
- We store it in justtrack. Here, the
status
will bepending
. - We try to apply it on partner side
- If successful, we'll change the
status
tosuccess
- If unsuccessful, we'll rollback the change by fetching the current value from partner. We'll also change the
status
torollback-error
.- If the rollback is successful, the
status
will remainrollback-error
- If the rollback failed, we'll change the
status
toerror
- If the rollback is successful, the
- If successful, we'll change the
- We update the bid based on the returning status. In the case of newly created bids, this includes deleting them to ensure a consistent state between justtrack and the partner.
This process can take up to 30 minutes for rollbacks. Only then will you see a stable status.
We gather bids and apply them on the partner side in batches. This increases throughput and overall speed in which changes are applied.
As a downside, if one bid in one batch fails, the entire batch is rejected and enters the rollback process.
Fetch bids
With this API, you can request with the bids within justtrack. In addition, it exposes the status
of the latest operation associated with the bid.
POST /management/v1/bids
Request
{
"page": {
"offset": integer,
"limit": integer,
},
"filter": {
"adsetId": string,
"campaignId": string,
"countryCode": string,
"partnerId": integer,
"sourceId": string
}
}
Name | Type | Description |
---|---|---|
page.offset | uint | Number of bids to skip for this filter |
page.limit | uint | Maximum number of bids to return |
filter.partnerId | uint | justtrack's identifier for the advertising partner |
filter.adsetId | string | The identifier for the adset that originated with the partner Optional: set to null when not needed |
filter.campaignId | string | The identifier for the campaign that originated with the partner Optional: set to null when not needed |
filter.countryCode | string | The two-character ISO country code derived from the IP Optional: set to null when not needed |
filter.sourceId | string | The ad partner's identifier of the media source where the ad is shown Optional: set to null when not needed |
Responses
200
{
"results": [
{
"adsetId": string,
"campaignId": string,
"countryCode": string,
"partnerId": integer,
"sourceId": string,
"status": string,
"value": float
}
]
}
Name | Type | Description |
---|---|---|
adsetId | string | The identifier for the adset that originated with the partner |
campaignId | string | The identifier for the campaign that originated with the partner |
countryCode | string | The two-character ISO country code derived from the IP |
partnerId | uint | justtrack's identifier for the advertising partner |
sourceId | string | The ad partner's identifier of the media source where the ad is shown |
status | string | Status of the latest bid operation |
value | float64 | Current value of the bid |
400
{
"error": string
}
Name | Type | Description |
---|---|---|
error | string | description of the error |
Upload bids
With this API you can upload a batch of bids, similar to the CSV upload. The same hierarchy, rules, and limitations apply.
POST /management/v1/bids/upload
Request
[
{
"partnerId": uint,
"adsetId": string,
"campaignId": string,
"countryCode": string,
"delete": boolean,
"optimalBidUsd": float,
"sourceId": string
}
]
Name | Type | Description |
---|---|---|
partnerId | uint | justtrack's identifier for the advertising partner |
adsetId | string | The identifier for the adset that originated with the partner Optional: set to null when not needed |
campaignId | string | The identifier for the campaign that originated with the partner ID |
country | string | The two-character ISO country code derived from the IP |
delete | boolean | Whether or not this operation is delete Optional: default is false |
optimalBidUsd | float64 | The target bid value, in USD |
sourceId | string | The ad partner's identifier of the media source where the ad is shown Optional: set to null when not needed |
Responses
204
{}
400
{
"error": string,
"bidsValidation": [
{
"adsetId": string,
"campaignId": string,
"campaignName": string,
"countryCode": string,
"partnerName": string,
"partnerId": integer,
"sourceId": string,
"status": string,
"delta": {
"changePercentage": float,
"newValue": float,
"oldValue": float
},
"message": string
}
]
}
For each bid failing validation an entry to bidsValidation
is added, detailing its dimensions, the value change, and the reason why it was rejected. Possible reasons include:
- Adset bidding isn't enabled for this partner
- Adset not found
- Bid value is below minimum
- Bidding isn't enabled for this partner
- Campaign bidding isn't enabled for this partner
- Campaign has the wrong optimization type for bidding
- Can't delete campaign bid
- Can't delete non-existent bid
- Given decimal precision isn't supported for this partner
- Missing campaign attributes
- Missing client partner vendor attributes
- Missing credentials
- Missing partner vendor attributes
- Source ID bid requires adset to be set
- Source ID bidding isn't enabled
- Specified country isn't part of the campaign
500
{
"error": string
}
This is the documentation for API v0, which is no longer maintained.
For up-to-date documentation, see the latest version.
With the Bidding API, you can:
- Fetch the status of current bid uploads
- Upload bids
Bid upload workflow
Bidding operates as a distributed transaction. The sequential flow is as follows:
- You upload a bid
- We store it in justtrack. Here, the
status
will bepending
. - We try to apply it on partner side
- If successful, we'll change the
status
tosuccess
- If unsuccessful, we'll rollback the change by fetching the current value from partner. We'll also change the
status
torollback-error
.- If the rollback is successful, the
status
will remainrollback-error
- If the rollback failed, we'll change the
status
toerror
- If the rollback is successful, the
- If successful, we'll change the
- We update the bid based on the returning status. In the case of newly created bids, this includes deleting them to ensure a consistent state between justtrack and the partner.
This process can take up to 30 minutes for rollbacks. Only then will you see a stable status.
We gather bids and apply them on the partner side in batches. This increases throughput and overall speed in which changes are applied.
As a downside, if one bid in one batch fails, the entire batch is rejected and enters the rollback process.
Fetch bids API
With this API, you can request with the bids within justtrack. In addition, it exposes the status
of the latest operation associated with the bid.
POST /management/v0/bids
Request
{
"page": {
"offset": integer,
"limit": integer,
},
"filter": {
"networkId": integer,
"campaignId": integer,
"adSetId": integer,
"country": string,
"sourceId": string
}
}
Name | Type | Description |
---|---|---|
page.offset | int | Number of bids to skip for this filter |
page.limit | int | Maximum number of bids to return |
filter.networkId | int | justtrack internal network ID |
filter.campaignId | int | justtrack internal campaign ID |
filter.adSetId | int | justtrack internal ad set ID |
filter.country | string | ISO 3166-1 alpha-2 code of your country, e.g. "DE" |
filter.sourceId | string | Identifier provided by ad network to target specific source app. |
The following filter combinations are eligible:
networkId
campaignId
campaignId
+country
campaignId
+country
+sourceId
adSetId
adSetId
+country
adSetId
+country
+sourceId
Response
Success: HTTP 200
[{
"networkId": integer,
"campaignId": integer,
"adSetId": integer,
"country": string,
"sourceId": string,
"status": string,
"value": float
}]
Name | Type | Description |
---|---|---|
networkId | int | justtrack internal network ID |
campaignId | int | justtrack internal campaign ID |
adSetId | int / null | justtrack internal ad set ID |
country | string / null | ISO 3166-1 alpha-2 code of your country, e.g. "DE" |
sourceId | string / null | Identifier provided by ad network to target specific source app. |
status | string | Current status of the latest bid operation |
value | float | Current value of the bid |
Invalid input: HTTP 400
{
"error": string
}
Name | Type | Description |
---|---|---|
error | string | description of the error |
Upload bids
With this API you can upload a batch of bids, similar to the CSV upload. The same hierarchy, rules, and limitations apply.
curl -X POST -H 'X-API-KEY: `{api key}`' 'https://api.justtrack.io/management/v0/bids/upload' \
-d '[`{"campaign": {"id": 1234}`, "country": "DE", "optimalBidUsd": 0.01, "delete": false}]'
Request
[
{
"adSetId": integer,
"campaign": {
"id": integer
},
"country": string,
"sourceId": string,
"optimalBidUsd": float,
"delete": boolean
}
]
Name | Type | Description |
---|---|---|
adSetId | int | justtrack internal ad set id |
campaign.id | int | justtrack internal campaign ID |
country | string | ISO 3166-1 alpha-2 code of your country, e.g. "DE" |
sourceId | string | Identifier provided by ad network to target specific source app. |
optimalBidUsd | float | The target bid value, in USD |
delete | boolean | Whether this operation is delete or not |
Response
Success: HTTP 204
{}
Invalid request: HTTP 400
{
"error": string
"bidsValidation": [
{
"adSetId": integer
"campaign": {
"id": integer,
"name": string
},
"country": {
"id": integer,
"name": string,
"iso2": string
},
"delta": {
"changePercentage": float,
"newValue": float,
"oldValue": float
},
"network": {
"id": integer,
"name": string
},
"sourceId": string,
"status": string,
"message": string
}
]
}
For each bid failing validation an entry to bidsValidation
is added, detailing its dimensions, the value change and the reason why it was rejected. Possible reasons include:
- ad set bidding isn't enabled for this network
- ad set not found
- bidding isn't enabled for this network
- campaign bidding isn't enabled for this network
- countries of the campaign doesn't contain the bid's specified country
- campaign has wrong optimization type for bidding
- missing credentials
- missing campaign attributes
- missing client network vendor attributes
- missing network vendor attributes
- source ID bidding isn't enabled
- source ID bid requires ad set to be set
- can not delete campaign bid
- can not delete non-existent bid
- bid value is below minimum
- given decimal precision isn't supported for this network
Error: HTTP 500
{
"err": string
}