Skip to main content
POST
/
v3
/
orders
/
upload-receipt
Upload order receipt data
curl --request POST \
  --url https://api.myscalev.com/v3/orders/upload-receipt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form file='@example-file'
{
  "data": [
    {
      "id": 123,
      "order_id": "<string>",
      "shipment_receipt": "<string>"
    }
  ],
  "is_paginated": false
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data

Receipt upload

file
file
required

Response

Receipt uploaded successfully

Non-paginated list payload for v3.

data
UploadReceipt · object[]
required
is_paginated
enum<boolean>
required
Available options:
false
Example:

false