3. Delete an Upload Slot

get/uploadmanager.deleteslot/{slot_id}

Deletes the upload slot that has been created using the /uploadmanager.newuploadslot (Create an Upload Slot) method and retrieves the file upload status, file version and other details.

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
Request
path Parameters
slot_id
required
string

Enter the ID of the slot you want to delete.

Example: 2665
Responses
200

OK

Response Schema: application/json
required
object
node
required
string non-empty
csrfToken
required
string non-empty
required
Array of objects non-empty unique
Array (non-empty)
version
required
number
typedId
required
string non-empty
contentLength
required
number
totalBytesRead
required
number
status
required
string non-empty
data
any
owner
any
percentage
required
number
createDate
required
string non-empty
createdBy
required
number
lastUpdateDate
required
string non-empty
lastUpdateBy
required
number
status
required
number
Request samples
Response samples
application/json
{
  • "response": {
    • "node": "string",
    • "csrfToken": "string",
    • "data": [
      • {
        • "version": 0,
        • "typedId": "string",
        • "contentLength": 0,
        • "totalBytesRead": 0,
        • "status": "string",
        • "data": null,
        • "owner": null,
        • "percentage": 0,
        • "createDate": "string",
        • "createdBy": 0,
        • "lastUpdateDate": "string",
        • "lastUpdateBy": 0
        }
      ],
    • "status": 0
    }
}