Skip to main content

GET Ad Schedules by Filter

Overview


The following table contains important information about the GET method in regards to receiving the ad schedules by filters.

GET Ad Schedules by Filters
MethodGET
URL or Endpoint​/api​/projects​/projectId​/ad-schedules
HeadersAuthorization
ParametersprojectId, search, page, take, order, insertedDate
BodyNot Applicable

The description of the URL parameter is as follows:

projectId URL Parameter
URL Parameter NameprojectId
MandatoryYes
Typestring
DescriptionUnique Id of the project.

The description of parameters is as follows:

Parameter NameTypeDescription
searchstringA word you want to filter.
orderstringIndicates whether the content is ordered by ascending or descending.
insertedDateDateDate when inserted.
pageintegerPage where the method makes the request.
takeintegerNumber of ad schedules to take.

Request Body

The request does not contain a request body.

Response

{
"success": true,
"errors": [],
"messages": [],
"result": {
"currentPage": 1,
"totalPages": 1,
"pageSize": 10,
"totalCount": 1,
"items": [
{
"publicId": "string",
"name": "string",
"type": "string",
"playerBidding": "string",
"playerType": "string",
"dateCreated": "2025-06-10T13:49:52.688Z",
"orderNumber": 0
}
]
},
"resultInfo": "string",
"statusCode": 0
}

Information about the fields that appear when you receive the response are displayed in the table below.

Field NameTypeDescription
successboolIf the response is successful it will return true. Otherwise will return false.
errorsarray[]Indicates if there was an error.
messagesarray[]Returns the response message from back-end.
resultarray[Object]Returns the response object.
currentPageintegerIndicates the current page of where the ad schedule is located.
totalPagesintegerThe total number of pages.
pageSizeintegerIndicates how many Ad Schedules are per page.
totalCountintegerThe total number of ad schedules received by the filter.
itemsarray[Object]Returns the ad schedules on the current page as an array of objects.
publicIdstringThe public ID of the ad schedule.
namestringThe name of the ad schedule.
typestringThe type of the ad schedule.
playerBiddingstringIf bidding is enabled, this field returns the id of the bidding template.
dateCreatedDateThe date when the ad schedule was created.
orderNumberinteger or nullOrder number of the outstream player.
resultInfostringReturns extra information about the result.
statusCodeintegerReturns the HTTP Status Code.

If the action is successful, the service sends back an HTTP 200 or 201 response.

Errors

For information about the errors that are common to all actions, see Common Errors:

  • HTTP Status Code 400: Bad Request

  • HTTP Status Code 401: Unauthorized

  • HTTP Status Code 403: Forbidden

  • HTTP Status Code 404: Result Not Found

  • HTTP Status Code 500: Internal Server Error

  • HTTP Status Code 503: Backend Fetch Failed