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 | |
|---|---|
| Method | GET |
| URL or Endpoint | /api/projects/projectId/ad-schedules |
| Headers | Authorization |
| Parameters | projectId, search, page, take, order, insertedDate |
| Body | Not Applicable |
The description of the URL parameter is as follows:
| projectId URL Parameter | |
|---|---|
| URL Parameter Name | projectId |
| Mandatory | Yes |
| Type | string |
| Description | Unique Id of the project. |
The description of parameters is as follows:
| Parameter Name | Type | Description |
|---|---|---|
| search | string | A word you want to filter. |
| order | string | Indicates whether the content is ordered by ascending or descending. |
| insertedDate | Date | Date when inserted. |
| page | integer | Page where the method makes the request. |
| take | integer | Number 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 Name | Type | Description |
|---|---|---|
| success | bool | If the response is successful it will return true. Otherwise will return false. |
| errors | array[] | Indicates if there was an error. |
| messages | array[] | Returns the response message from back-end. |
| result | array[Object] | Returns the response object. |
| currentPage | integer | Indicates the current page of where the ad schedule is located. |
| totalPages | integer | The total number of pages. |
| pageSize | integer | Indicates how many Ad Schedules are per page. |
| totalCount | integer | The total number of ad schedules received by the filter. |
| items | array[Object] | Returns the ad schedules on the current page as an array of objects. |
| publicId | string | The public ID of the ad schedule. |
| name | string | The name of the ad schedule. |
| type | string | The type of the ad schedule. |
| playerBidding | string | If bidding is enabled, this field returns the id of the bidding template. |
| dateCreated | Date | The date when the ad schedule was created. |
| orderNumber | integer or null | Order number of the outstream player. |
| resultInfo | string | Returns extra information about the result. |
| statusCode | integer | Returns 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