CreativeRejectionReasonQueryRequest
The request body for querying ad creative rejection reasons.
Declaration
object CreativeRejectionReasonQueryRequestProperties
| Name | Type | Description |
|---|---|---|
filters | [QueryFilter] | Scopes results to specific ad creatives or rejection reason types. Accepts |
sorting | [QuerySort] | Standard |
pagination | QueryPagination | Standard |
Discussion
The CreativeRejectionReasonQueryRequest object is the request body for querying ad creative rejection reasons.
Example
{
"filters": [
{
"field": "adamId",
"operator": "EQUALS",
"value": 123456789
}
],
"sorting": [
{
"field": "creationTime",
"order": "DESC"
}
],
"pagination": {
"pageSize": 20,
"offset": 0
}
}