Get seller
Gets a single Seller object by ID.
Get seller by ID. Available for Client, Vendor and Operations accounts. Returns a single seller with id, name, status, address, currencies, and audit. Optional select query parameter controls which fields are returned.
Path parameters
idstringRequired
Seller identifier.
Query parameters
selectstringOptional
Optional RQL select statement to limit returned fields.
Responses
200
OK
application/json
idstringOptional
namestringOptional
iconstring · nullableOptional
revisioninteger · int32Optional
externalIdstring · nullableOptional
statusstring · enumOptionalPossible values:
404
Not Found
application/json
get/public/v1/accounts/sellers/{id}
GET /public/v1/accounts/sellers/{id} HTTP/1.1
Host: api.platform.softwareone.com
Accept: */*
{
"id": "SEL-7295-4834",
"revision": 2,
"name": "SoftwareOne AG",
"externalId": "SWO_CH",
"status": "Active",
"currencies": [
"USD"
],
"address": {
"addressLine1": "Some street",
"postCode": "P0S C0D3",
"city": "Some city",
"state": "SS",
"country": "CH"
}
}Last updated
Was this helpful?