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.
OK
{- "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
}
}