OrderExternalStatus

Retrieve a specific order external status

get

Get details of a specific order external status by its ID.

Authorizations
AuthorizationstringRequired
Path parameters
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
get
/api/v1/order_external_statuses/{id}/

Update order external status

put

Update an existing order external status.

Authorizations
AuthorizationstringRequired
Path parameters
idintegerRequired

Unique identifier of the resource

Example: 1
Body

A model representing external statuses of an order with a name and unique code.

pkintegerRead-onlyOptional

Unique identifier for the order.

Example: 1
uuidstring · uuidOptional

The unique identifier for the external status.

Example: 123e4567-e89b-12d3-a456-426614174000
namestring · max: 64Required

The name of the external status.

Example: Shipped
codestring · max: 64Required

A unique code representing the external status.

Example: SHIPPED
modified_datestring · date-timeRead-onlyOptional

Modified Date

Example: 2021-07-07T14:00:00Z
created_datestring · date-timeRead-onlyOptional

Created Date

Example: 2021-07-07T14:00:00Z
Responses
put
/api/v1/order_external_statuses/{id}/

Delete order external status

delete

Delete a order external status.

Authorizations
AuthorizationstringRequired
Path parameters
idintegerRequired

Unique identifier of the resource

Example: 1
Responses
delete
/api/v1/order_external_statuses/{id}/

No content

Update order external status

patch

Update an existing order external status.

Authorizations
AuthorizationstringRequired
Path parameters
idintegerRequired

Unique identifier of the resource

Example: 1
Body

A model representing external statuses of an order with a name and unique code.

pkintegerRead-onlyOptional

Unique identifier for the order.

Example: 1
uuidstring · uuidOptional

The unique identifier for the external status.

Example: 123e4567-e89b-12d3-a456-426614174000
namestring · max: 64Required

The name of the external status.

Example: Shipped
codestring · max: 64Required

A unique code representing the external status.

Example: SHIPPED
modified_datestring · date-timeRead-onlyOptional

Modified Date

Example: 2021-07-07T14:00:00Z
created_datestring · date-timeRead-onlyOptional

Created Date

Example: 2021-07-07T14:00:00Z
Responses
patch
/api/v1/order_external_statuses/{id}/

List order external statuses

get

Retrieve a paginated list of all order external statuses.

Authorizations
AuthorizationstringRequired
Query parameters
pageinteger · min: 1Optional

Specifies the page number of the current dataset

Default: 1
limitinteger · min: 1Optional

Indicates the number of rows on the current page.

Default: 10
created_datestring · date-timeOptional

Filter by creation date using supported lookup expressions (e.g., gt, gte, lt, lte, date__gt, etc.).

Example: created_date__gt=2024-01-01T00:00:00Z
modified_datestring · date-timeOptional

Filter by modification date using supported lookup expressions (e.g., gt, gte, lt, lte, date__gt, etc.).

Example: modified_date__lt=2024-01-01T00:00:00Z
pkintegerOptional

Filters by primary key

pk__gtstringOptional

Filter by primary key greater than a specific value.

pk__gteintegerOptional

Filters by primary key greater than or equal to the given value

pk__ltintegerOptional

Filters by primary key less than the given value

pk__lteintegerOptional

Filters by primary key less than or equal to the given value

pk__ininteger[]Optional

Filter by multiple primary key values (comma-separated list of integers)

uuidstringOptional

Filter by UUID.

Example: 123e4567-e89b-12d3-a456-426614174000
namestringOptional

Filter by name.

codestringOptional

Filter by code.

Responses
get
/api/v1/order_external_statuses/

Create a new order external status

post

Create a new order external status with the provided details.

Authorizations
AuthorizationstringRequired
Body

A model representing external statuses of an order with a name and unique code.

pkintegerRead-onlyOptional

Unique identifier for the order.

Example: 1
uuidstring · uuidOptional

The unique identifier for the external status.

Example: 123e4567-e89b-12d3-a456-426614174000
namestring · max: 64Required

The name of the external status.

Example: Shipped
codestring · max: 64Required

A unique code representing the external status.

Example: SHIPPED
modified_datestring · date-timeRead-onlyOptional

Modified Date

Example: 2021-07-07T14:00:00Z
created_datestring · date-timeRead-onlyOptional

Created Date

Example: 2021-07-07T14:00:00Z
Responses
chevron-right
201

The order external status was created successfully.

application/json
post
/api/v1/order_external_statuses/

Last updated

Was this helpful?