ReDoc documentation
Conditionals allow you to capture business rules in Order Book. You can target Orders based on several attributes or create time-based rules, and apply mutations to this order set enriching for your optimization.
This endpoint allows you to create a new conditional. The application will assign a generated ID to the conditional, that can be used for retrieving, updating or deleting the conditional. This generated ID is returned in the Location header and (optional) response body.
Prefer | Array of strings The RFC7240 Prefer header indicates that a particular server behavior is preferred by the client but is not required for successful completion of the request (see RFC 7240). The following behavior is supported by this API:
|
OK
Created successfully
General error payload
{- "name": "a name",
- "description": "a description",
- "conditions": {
- "locations": [
- "locationA"
], - "temporals": [
- {
- "start_at": "2021-01-01T10:15:30Z",
- "end_at": "2021-01-01T10:15:30Z"
}
], - "categories": [
- {
- "entity_type": "LOCATION",
- "categories": [
- "my-category"
]
}
], - "clients": [
- "company-id"
]
}, - "effects": {
- "stop_time": "PT5M",
- "time_windows": [
- {
- "open_time": "14:45",
- "open_day": "MONDAY",
- "close_time": "14:45",
- "close_day": "MONDAY",
- "cost": 0
}
], - "requirements": {
- "tags": [ ],
- "forbidden_tags": [ ]
}
}
}
{- "id": "624ec196-4c5c-4fb4-bb43-9ffd8a6b8844",
- "name": "a name",
- "description": "a description",
- "conditions": {
- "locations": [
- "locationA"
], - "temporals": [
- {
- "start_at": "2021-01-01T10:15:30Z",
- "end_at": "2021-01-01T10:15:30Z"
}
], - "categories": [
- {
- "entity_type": "LOCATION",
- "categories": [
- "my-category"
]
}
], - "clients": [
- "company-id"
]
}, - "effects": {
- "stop_time": "PT5M",
- "time_windows": [
- {
- "open_time": "14:45",
- "open_day": "MONDAY",
- "close_time": "14:45",
- "close_day": "MONDAY",
- "cost": 0
}
], - "requirements": {
- "tags": [ ],
- "forbidden_tags": [ ]
}
}
}
This endpoint allows you to get the information about a given conditional.
OK
The entity is not found
{- "id": "624ec196-4c5c-4fb4-bb43-9ffd8a6b8844",
- "name": "a name",
- "description": "a description",
- "conditions": {
- "locations": [
- "locationA"
], - "temporals": [
- {
- "start_at": "2021-01-01T10:15:30Z",
- "end_at": "2021-01-01T10:15:30Z"
}
], - "categories": [
- {
- "entity_type": "LOCATION",
- "categories": [
- "my-category"
]
}
], - "clients": [
- "company-id"
]
}, - "effects": {
- "stop_time": "PT5M",
- "time_windows": [
- {
- "open_time": "14:45",
- "open_day": "MONDAY",
- "close_time": "14:45",
- "close_day": "MONDAY",
- "cost": 0
}
], - "requirements": {
- "tags": [ ],
- "forbidden_tags": [ ]
}
}
}
This endpoint updates a given conditional.
Prefer | Array of strings The RFC7240 Prefer header indicates that a particular server behavior is preferred by the client but is not required for successful completion of the request (see RFC 7240). The following behavior is supported by this API:
|
If-Match | string weak Etag as optimistic locking check |
OK
Created successfully
The entity is not found
Client error response code indicates that access to the target resource has been denied. This happens with conditional requests on methods other than GET or HEAD when the condition defined by the If-Unmodified-Since, If-Match or If-None-Match headers is not fulfilled. This is typically the case when the entity was updated by someone else before you commit your request. In that case, the request, usually a modification of a resource, cannot be executed and this error response is sent back.
General error payload
{- "name": "a name",
- "description": "a description",
- "conditions": {
- "locations": [
- "locationA"
], - "temporals": [
- {
- "start_at": "2021-01-01T10:15:30Z",
- "end_at": "2021-01-01T10:15:30Z"
}
], - "categories": [
- {
- "entity_type": "LOCATION",
- "categories": [
- "my-category"
]
}
], - "clients": [
- "company-id"
]
}, - "effects": {
- "stop_time": "PT5M",
- "time_windows": [
- {
- "open_time": "14:45",
- "open_day": "MONDAY",
- "close_time": "14:45",
- "close_day": "MONDAY",
- "cost": 0
}
], - "requirements": {
- "tags": [ ],
- "forbidden_tags": [ ]
}
}
}
{- "id": "624ec196-4c5c-4fb4-bb43-9ffd8a6b8844",
- "name": "a name",
- "description": "a description",
- "conditions": {
- "locations": [
- "locationA"
], - "temporals": [
- {
- "start_at": "2021-01-01T10:15:30Z",
- "end_at": "2021-01-01T10:15:30Z"
}
], - "categories": [
- {
- "entity_type": "LOCATION",
- "categories": [
- "my-category"
]
}
], - "clients": [
- "company-id"
]
}, - "effects": {
- "stop_time": "PT5M",
- "time_windows": [
- {
- "open_time": "14:45",
- "open_day": "MONDAY",
- "close_time": "14:45",
- "close_day": "MONDAY",
- "cost": 0
}
], - "requirements": {
- "tags": [ ],
- "forbidden_tags": [ ]
}
}
}
This endpoint allows you to delete a given conditional
Deletion has succeeded and body is empty
The entity is not found
Client error response code indicates that access to the target resource has been denied. This happens with conditional requests on methods other than GET or HEAD when the condition defined by the If-Unmodified-Since, If-Match or If-None-Match headers is not fulfilled. This is typically the case when the entity was updated by someone else before you commit your request. In that case, the request, usually a modification of a resource, cannot be executed and this error response is sent back.
General error payload
{- "title": "Invalid ...",
- "status": 400,
- "detail": "string",
- "instance": "an URI",
- "violations": [
- {
- "field": "class.field",
- "message": "a violation message"
}
]
}