...
Code Block |
---|
curl --location --request PATCH 'http://localhost:7071/api/organizations/{organizationId}/queues/{queueId}/positions/{positionId}' \ --header 'ApiKey: XYZ' \ --header 'Content-Type: application/json' \ --data-raw '{ "notification": { "type": "phoneNumber", "settings": { "from": "", "to": "+4800000" } }, "customerInfo": ["John", "Doe"], "tags": [ { "id": "3143d93f-643c-4e29-92e8-5af7b25b8c38", "iconUrl": "https://media.omborigrid.com/media/5f55d979ce0cbb6d30c92c3e/27f54990-0f11-11ec-85ff-7bd005db4d31", "color": "#987931", "title": { "en": "G" } } ], "customData": { "internalIdOrAnyOtherField": "foo", } }' |
...
Code Block |
---|
{
"id": "9f0c03aa-d7eb-4897-b9fe-4b879bbd943e",
"location": null,
"type": "booking",
"priority": 100,
"createdAt": "2020-12-18T11:22:40.034Z",
"notification": {
"type": "phoneNumber",
"settings": {
"from": "",
"to": "+4800000"
}
},
"locale": "en",
"booking": {
"start": "2020-12-07T15:55:00Z",
"end": "2020-12-07T16:55:00Z"
},
"status": "draft",
"label": "",
"queue": "b23bea4f-8e8a-4da6-b413-04454f8428aa",
"bookingReminderAt": null,
"customerInfo": ["John", "Doe"],
"tags": [
{
"id": "3143d93f-643c-4e29-92e8-5af7b25b8c38",
"iconUrl": "https://media.omborigrid.com/media/5f55d979ce0cbb6d30c92c3e/27f54990-0f11-11ec-85ff-7bd005db4d31",
"color": "#987931",
"title": {
"en": "G"
}
}
],
"customData": {
"internalIdOrAnyOtherField": "foo",
}
} |
...