List Seller Extensions

post/sellermanager.fetch/*/SX/{SXCategory}

Retrieves all Seller Extensions.

You can choose fields to be returned in the response by employing the resultFields or valueFields filter:
resultFields: returns key-value pairs as objects. This is the more friendly response compared to valueFields but the server fetches all fields from the database in the backend which might result in a slower performance. See the List Customers' listCustomersResponseExample_resultFields response example.

valueFields: returns just an array of values. Use this option if a better performance is required. See the List Customers' listCustomersResponseExample_valueFields response example.

Securitybasic or X-PriceFx-jwt
Request
path Parameters
SXCategory
required
string

The Seller Extension category (the Name from the Seller Master Extension table).

Example: SalesOrganization
Responses
200

OK

Response Schema: application/json
object (getSellerExtensionResponse)
status
integer
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
endRow
integer
Request samples
Response samples
application/json
{
  • "response": {
    • "status": 0,
    • "node": "node",
    • "data": [
      • {
        • "version": 2,
        • "typedId": "1.SX3",
        • "name": "SXTest",
        • "sellerId": "Seller001",
        • "createDate": "2022-06-09T12:08:49",
        • "createdBy": 2147490696,
        • "lastUpdateDate": "2022-06-14T12:56:57",
        • "lastUpdateBy": 2147490696,
        • "attribute1": "123",
        • "attribute2": null,
        • "attribute3": null
        }
      ],
    • "endRow": 1
    }
}