Seller

The Seller object represents a seller in the Marketplace platform. This object contains the following properties:

Field
Type
Description

id

string

The primary seller identifier.

Example: "SEL-1234-1234

href

string

The relative reference to the object in the API.

Example: /v1/accounts/sellers/SEL-1234-1234

status

string

The seller's status. Possible values are Active, Disabled, Offline , or Deleted.

name

string

The seller's name.

Example: SoftwareOne USA

icon

string

The relative path to the seller’s logo.

Example: /static/accounts/SEL-1234-1234/logo.png

externalId

string

The external identifier.

Example: WW-CON-123456

address

The address of the seller.

Example:

currency

string

The seller's currency.

buyers

A reference to the Buyer object.

audit

A reference to the Audit object.

Possible audit events: Created, Updated, Activated, Disabled, Deactivated, or Deleted.

Example:

Example

{
	"id": "SEL-7295-4834",
	"externalId": "SWO_CH",
	"status": "Active",
	"icon": null,
	"currency": "USD",
	"address": {
		"addressLine1": "Some street",
		"addressLine2": null,
		"postCode": "P0S C0D3",
		"city": "Some city",
		"state": "SS",
		"country": "CH"
	},
	"name": "SoftwareOne AG"
}

Last updated

Was this helpful?