Request Type: GET
Enter the request URL: http://StoreURL/odata/order
Auth type: Bearer Token - paste the token generated in the previous steps
Request Type: GET
Enter the request URL: http://StoreURL/odata/order?$filter=CreatedOnUtc gt 2021-01-20T03:30:00.000Z and CreatedOnUtc lt 2021-01-23T03:30:00.000Z
Auth type: Bearer Token - paste the token generated in the previous steps
As a result, you will receive orders from 20.01.2021 to 23.01.2021.
Request Type: GET
Enter the request URL: http://StoreURL/odata/order?$filter=Imported eq true
Auth type: Bearer Token - paste the token generated in the previous steps
As a result, you will receive orders from 20.01.2021 to 23.01.2021.
Request Type: GET
Enter the request URL: http://StoreURL/odata/order('id')
Auth type: Bearer Token - paste the token generated in the previous steps
As a result you will get only category with specified ID.
Request Type: POST
Enter the request URL: http://StoreURL/odata/Order('id')/DeleteOrder
Auth type: Bearer Token - paste the token generated in the previous steps
Request Type: POST
Enter the request URL: http://StoreURL/odata/Order('id')/CancelOrder
Auth type: Bearer Token - paste the token generated in the previous steps
As a result, the specified order will be canceled.
Request Type: POST
Enter the request URL: http://StoreURL/odata/Order('id')/MarkAsPaid
Auth type: Bearer Token - paste the token generated in the previous steps
As a result, the payment status will be changed to Paid
Request Type: POST
Enter the request URL: http://StoreURL/odata/Order('id')/SetAsImported
Auth type: Bearer Token - paste the token generated in the previous steps
As a result, the specified order will be marked as Imported.
Request Type: POST
Enter the request URL: http://StoreURL/odata/Order('id')/MarkAsAuthorized
Auth type: Bearer Token - paste the token generated in the previous steps
As a result, the specified order will be marked as Authorized.
Request Type: GET
Enter the request URL: http://StoreURL/odata/order
Auth type: Bearer Token - paste the token generated in the previous steps
Request Type: POST
Enter the request URL: http://StoreURL/odata/Shipment/(id)/Create
Auth type: Bearer Token - paste the token generated in the previous steps
Body:
Request Type: GET
Enter the request URL: http://StoreURL/odata/Shipment('id')
Auth type: Bearer Token - paste the token generated in the previous steps
Request Type: POST
Enter the request URL: http://StoreURL/odata/Shipment('id')/SetTrackingNumber
Auth type: Bearer Token - paste the token generated in the previous steps
Body:
{
"TrackingNumber": "string"
}
Request Type: POST
Enter the request URL: http://StoreURL/odata/Shipment('id')/DeleteShipment
Auth type: Bearer Token - paste the token generated in the previous steps
Request Type: POST
Enter the request URL: http://StoreURL/odata/Shipment('id')/SetAsShipped
Auth type: Bearer Token - paste the token generated in the previous steps
As a result, the specified order will be marked as shipped.
Request Type: POST
Enter the request URL: http://StoreURL/odata/Shipment('id')/SetAsDelivered
Auth type: Bearer Token - paste the token generated in the previous steps
As a result, the shipment will be marked as delivered
Request Type: GET
Enter the request URL: http://StoreURL/odata/returnrequest
Auth type: Bearer Token - paste the token generated in the previous steps
Request Type: GET
Enter the request URL: http://StoreURL/odata/returnrequest('id')
Auth type: Bearer Token - paste the token generated in the previous steps
Request Type: POST
Enter the request URL: http://StoreURL/odata/returnrequest/(id)/Update
Auth type: Bearer Token - paste the token generated in the previous steps
{
"externalId": null,
"staffNotes": "string",
"notifyCustomer": true,
"returnRequestStatus": 0
}
Request Type: POST
Enter the request URL: http://StoreURL/odata/returnrequest/(id)/Delete
Auth type: Bearer Token - paste the token generated in the previous steps