Delete a Seller Extension

post/delete/SX

Deletes the specified (by typedId in the payload) Seller Extension.

Securitybasic or X-PriceFx-jwt
Request
Request Body schema: application/json
object
typedId
string

typedId of the Seller Extension you want to delete.

Responses
200

OK

Response Schema: application/json
object
node
string
Array of SX3 (objects) or Array of SX6 (objects) or Array of SX8 (objects) or Array of SX10 (objects) or Array of SX20 (objects) or Array of SX30 (objects) or Array of SX50 (objects)
Any of:

The Seller Extension object. The type code is SX3 (contains 3 attribute fields).

Array
version
integer
typedId
string
name
string <= 255 characters
sellerId
string <= 255 characters
createDate
string <date-time>
createdBy
integer
lastUpdateDate
string <date-time>
lastUpdateBy
integer
attribute1
string or null <= 255 characters
attribute3
string or null <= 255 characters
attribute2
string or null <= 255 characters
status
integer
Request samples
application/json
{
  • "data": {
    • "typedId": "string"
    }
}
Response samples
application/json
{
  • "response": {
    • "node": "e2e-templates-node",
    • "data": [
      • {
        • "version": 1,
        • "typedId": "4.SX3",
        • "name": "SXTest",
        • "sellerId": "Seller024",
        • "createDate": "2022-06-14T12:57:21",
        • "createdBy": 2147490696,
        • "lastUpdateDate": "2022-06-15T10:49:19",
        • "lastUpdateBy": 2147490696,
        • "attribute1": null,
        • "attribute2": null,
        • "attribute3": null
        }
      ],
    • "status": 0
    }
}