ServiceShipment
ServiceShipment
Get a list of external workshops for a tenant.
Reference to a tenant.
^[A-Za-z0-9-_]+
Reference to a specific page in a result set.
The number of items per page in a result set.
Defines which field the resource list is sorted by.
ENUM | Description |
---|---|
ASC | Sort in ascending order |
DESC | Sort in descending order |
GET /v2/tenants/{tenantUid}/serviceorders/externalworkshops HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"externalWorkshopUid": "text",
"companyName": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"contactName": "text",
"note": "text",
"active": true,
"createdAt": "2025-07-30T18:10:28.378Z",
"createdBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text"
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}
Create a new external workshop for a tenant.
Reference to a tenant.
^[A-Za-z0-9-_]+
true
^[A-Za-z0-9-_]+
POST /v2/tenants/{tenantUid}/serviceorders/externalworkshops HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 202
{
"companyName": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"contactName": "text",
"note": "text",
"active": true,
"externalWorkshopUid": "text"
}
Example response
{
"externalWorkshopUid": "text",
"companyName": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"contactName": "text",
"note": "text",
"active": true,
"createdAt": "2025-07-30T18:10:28.378Z",
"createdBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text"
}
Get a given external workshop.
Reference to a tenant.
^[A-Za-z0-9-_]+
Reference to an external workshop.
^[A-Za-z0-9-_]+
GET /v2/tenants/{tenantUid}/serviceorders/externalworkshops/{externalWorkshopUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"externalWorkshopUid": "text",
"companyName": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"contactName": "text",
"note": "text",
"active": true,
"createdAt": "2025-07-30T18:10:28.378Z",
"createdBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text"
}
Update an external workshop.
Reference to a tenant.
^[A-Za-z0-9-_]+
Reference to an external workshop.
^[A-Za-z0-9-_]+
true
PUT /v2/tenants/{tenantUid}/serviceorders/externalworkshops/{externalWorkshopUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 173
{
"companyName": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"contactName": "text",
"note": "text",
"active": true
}
Example response
{
"externalWorkshopUid": "text",
"companyName": "text",
"address": "text",
"postalCode": "text",
"city": "text",
"countryCode": "text",
"email": "text",
"phone": "text",
"contactName": "text",
"note": "text",
"active": true,
"createdAt": "2025-07-30T18:10:28.378Z",
"createdBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text"
}
Delete an external workshop.
Reference to a tenant.
^[A-Za-z0-9-_]+
Reference to an external workshop.
^[A-Za-z0-9-_]+
DELETE /v2/tenants/{tenantUid}/serviceorders/externalworkshops/{externalWorkshopUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No Content
No content
List service shipments.
Reference to a tenant.
^[A-Za-z0-9-_]+
Reference to a specific page in a result set.
The number of items per page in a result set.
Defines which field the resource list is sorted by.
ENUM | Description |
---|---|
ASC | Sort in ascending order |
DESC | Sort in descending order |
GET /v2/tenants/{tenantUid}/serviceorders/shipments HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"serviceShipmentUid": "text",
"sender": {
"storeUid": "text"
},
"receiver": {
"storeUid": "text",
"externalWorkshopUid": "text"
},
"status": "NOT_SENT",
"note": "text",
"trackingNumber": "text",
"shipmentNumber": "text",
"items": [
{
"serviceOrderUid": "text",
"receivedDate": "2025-07-30T18:10:28.378Z",
"createdAt": "2025-07-30T18:10:28.378Z",
"createdBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text"
}
],
"createdBy": "text",
"createdAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"shipmentDate": "2025-07-30T18:10:28.378Z",
"allReceived": true
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}
Create new service shipment. For receiver, either a store or an external workshop must be set (by its UID).
Reference to a tenant.
^[A-Za-z0-9-_]+
POST /v2/tenants/{tenantUid}/serviceorders/shipments HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 321
{
"sender": {
"storeUid": "text"
},
"receiver": {
"storeUid": "text",
"externalWorkshopUid": "text"
},
"note": "text",
"status": "NOT_SENT",
"trackingNumber": "text",
"shipmentNumber": "text",
"shipmentDate": "2025-07-30T18:10:28.378Z",
"items": [
{
"serviceOrderUid": "text",
"receivedDate": "2025-07-30T18:10:28.378Z"
}
],
"serviceShipmentUid": "text"
}
Example response
{
"serviceShipmentUid": "text",
"sender": {
"storeUid": "text"
},
"receiver": {
"storeUid": "text",
"externalWorkshopUid": "text"
},
"status": "NOT_SENT",
"note": "text",
"trackingNumber": "text",
"shipmentNumber": "text",
"items": [
{
"serviceOrderUid": "text",
"receivedDate": "2025-07-30T18:10:28.378Z",
"createdAt": "2025-07-30T18:10:28.378Z",
"createdBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text"
}
],
"createdBy": "text",
"createdAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"shipmentDate": "2025-07-30T18:10:28.378Z",
"allReceived": true
}
Get service shipment.
Reference to a tenant.
^[A-Za-z0-9-_]+
Reference to a service shipment.
^[A-Za-z0-9-_]+
GET /v2/tenants/{tenantUid}/serviceorders/shipments/{serviceShipmentUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"serviceShipmentUid": "text",
"sender": {
"storeUid": "text"
},
"receiver": {
"storeUid": "text",
"externalWorkshopUid": "text"
},
"status": "NOT_SENT",
"note": "text",
"trackingNumber": "text",
"shipmentNumber": "text",
"items": [
{
"serviceOrderUid": "text",
"receivedDate": "2025-07-30T18:10:28.378Z",
"createdAt": "2025-07-30T18:10:28.378Z",
"createdBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text"
}
],
"createdBy": "text",
"createdAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"shipmentDate": "2025-07-30T18:10:28.378Z",
"allReceived": true
}
Update service shipment. For receiver, either a store or an external workshop must be set (by its UID).
Reference to a tenant.
^[A-Za-z0-9-_]+
Reference to a service shipment.
^[A-Za-z0-9-_]+
PUT /v2/tenants/{tenantUid}/serviceorders/shipments/{serviceShipmentUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 293
{
"sender": {
"storeUid": "text"
},
"receiver": {
"storeUid": "text",
"externalWorkshopUid": "text"
},
"note": "text",
"status": "NOT_SENT",
"trackingNumber": "text",
"shipmentNumber": "text",
"shipmentDate": "2025-07-30T18:10:28.378Z",
"items": [
{
"serviceOrderUid": "text",
"receivedDate": "2025-07-30T18:10:28.378Z"
}
]
}
Example response
{
"serviceShipmentUid": "text",
"sender": {
"storeUid": "text"
},
"receiver": {
"storeUid": "text",
"externalWorkshopUid": "text"
},
"status": "NOT_SENT",
"note": "text",
"trackingNumber": "text",
"shipmentNumber": "text",
"items": [
{
"serviceOrderUid": "text",
"receivedDate": "2025-07-30T18:10:28.378Z",
"createdAt": "2025-07-30T18:10:28.378Z",
"createdBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text"
}
],
"createdBy": "text",
"createdAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"shipmentDate": "2025-07-30T18:10:28.378Z",
"allReceived": true
}
Delete service shipment
Reference to a tenant.
^[A-Za-z0-9-_]+
Reference to a service shipment.
^[A-Za-z0-9-_]+
DELETE /v2/tenants/{tenantUid}/serviceorders/shipments/{serviceShipmentUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No Content
No content
Get service shipment for a service order
Reference to a tenant.
^[A-Za-z0-9-_]+
Reference to a service order
^[A-Za-z0-9-_]+
Reference to a specific page in a result set.
The number of items per page in a result set.
Defines which field the resource list is sorted by.
ENUM | Description |
---|---|
ASC | Sort in ascending order |
DESC | Sort in descending order |
GET /v2/tenants/{tenantUid}/serviceorders/shipments/items/{serviceOrderUid} HTTP/1.1
Host: api.flowretail.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Example response
{
"items": [
{
"serviceShipmentUid": "text",
"sender": {
"storeUid": "text"
},
"receiver": {
"storeUid": "text",
"externalWorkshopUid": "text"
},
"status": "NOT_SENT",
"note": "text",
"trackingNumber": "text",
"shipmentNumber": "text",
"items": [
{
"serviceOrderUid": "text",
"receivedDate": "2025-07-30T18:10:28.378Z",
"createdAt": "2025-07-30T18:10:28.378Z",
"createdBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text"
}
],
"createdBy": "text",
"createdAt": "2025-07-30T18:10:28.378Z",
"lastModifiedBy": "text",
"lastModifiedAt": "2025-07-30T18:10:28.378Z",
"shipmentDate": "2025-07-30T18:10:28.378Z",
"allReceived": true
}
],
"paging": {
"pageNumber": 1,
"pageSize": 1,
"totalCount": 1
}
}
Was this helpful?