schedules

Org Schedule Fragments Get Post

POST
Gets an organization schedule fragment.

Request

This endpoint expects an object.
id
stringRequired
Organization schedule Fragment ID.

Response

This endpoint returns an object
org_schedule_fragment
object
POST
1curl -X POST https://api.devrev.ai/org-schedule-fragments.get \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "id": "id"
6}'
200
Successful
1{
2 "org_schedule_fragment": {
3 "id": "id",
4 "status": "archived",
5 "created_date": "2023-01-01T12:00:00Z",
6 "display_id": "display_id",
7 "from": "2023-01-01T12:00:00Z",
8 "intervals": [
9 {}
10 ],
11 "modified_date": "2023-01-01T12:00:00Z",
12 "name": "name",
13 "region_codes": [
14 "region_codes"
15 ],
16 "to": "2023-01-01T12:00:00Z"
17 }
18}