Use this function to check the status of the update. We will be updating the status once a day.
Current rate limit
25 calls per provider in a window of 1 hour
As part of processing, the fee update records should be updated with one of the following status values:
Status | Scenario |
|---|---|
pending | Fee is yet to be updated |
overriden | Fee update is overridden by a later update request to the same media/channel type and segment |
invalid amount | CPM < $0 or CPM > $50 |
not found | Partner does not own segment |
not eligible | Segment is not eligible for BYOR |
applied | Fee has been updated |
Sample Request
GET /v1/feestatus HTTP/1.1
Host: datax.yahooapis.com
X-DATAX-RESOURCE-ID: NOVAE2E.segmentfee.20241205T213655Z426629533Sample Response
GET /v1/feestatus? HTTP/1
Host: datax.yahooapis.com
X-DATAX-RESOURCE-ID: NOVAE2E.segmentfee.20241205T213655Z426629533
HTTP/2 200
Date: Tue, 17 Dec 2024 14:04:08 GMT
Content-type: application/json
{
"resourceType" : "datax-feeupdate",
"resourceId" : "NOVAE2E.segmentfee.20241205T213655Z426629533",
"createTime" : "2024-12-05T21:36:55",
"segments" : [ {
"fees" : [ {
"fee" : 1.5,
"mediaType" : "display",
"status" : "applied"
}, {
"fee" : 2.5,
"mediaType" : "audio",
"status" : "applied"
} ],
"segment" : "test1segment"
}, {
"fees" : [ {
"fee" : 3.5,
"mediaType" : "conectedTv",
"status" : "applied"
}, {
"fee" : 2.5,
"mediaType" : "audio",
"status" : "overridden"
} ],
"segment" : "test2segment"
} ]