Get Copyable Schedules
GET/v1/product/:product_id/environment/:environment_id/copyable-schedules
Get all schedules that can be copied to this environment
Request
Path Parameters
The product ID
The environment ID
Query Parameters
Filter by name
Filter by description
Field to sort by
Possible values: Value must match regular expression ^(asc|desc)$
Default value: asc
Sort order
Default value: 0
Pagination cursor
Default value: 10
Page size
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
required
List of events
Account ID of the user who last modified the resource
Timestamp of when the resource was last modified
Timestamp of when this resource was created
Name of the event
Description of the event
Start datetime of the event
ID of the account that created the event
Unique identifier for the event
page_meta
object
required
Metadata for pagination.
Cursor to designate where you are in iterating through values. Start with '0', and pass this on subsequent calls to continue iteration
Default value: 50
The maximum number of elements to be returned per call
Default value: 0
Total number of entities
{
"data": [
{
"last_modified_account_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"last_modified_timestamp": "2024-07-29T15:51:28.071Z",
"created_timestamp": "2024-07-29T15:51:28.071Z",
"name": "string",
"description": "string",
"start_datetime": "2024-07-29T15:51:28.071Z",
"created_by_account_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"schedule_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"page_meta": {
"cursor": "string",
"page_size": 50,
"total": 0
}
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}