1. Create an Upload Slot

get/uploadmanager.newuploadslot

Returns a slot ID that is needed for the /bdmanager.upload/{typedId}/{slot_id}, or /productimages.upload/{slot_id}/{sku} (Upload a File) endpoint.

Information

To upload a file you need to perform the following actions:

  1. Create an Upload Slot
  2. Upload a File
  3. Delete an Upload Slot
Securitybasic or X-PriceFx-jwt
Responses
200

OK

Response Schema: application/json
node
string non-empty
csrfToken
string non-empty
Array of objects non-empty unique
Array (non-empty)
id
string non-empty
status
number
Request samples
Response samples
application/json
{
  • "response": {
    • "node": "node",
    • "csrfToken": "token",
    • "data": [
      • {
        • "id": "4101"
        }
      ],
    • "status": 0
    }
}