For the complete documentation index, see llms.txt. This page is also available as Markdown.

Seller

The Seller object represents a seller in the Marketplace platform.

This object contains the following attributes:

Field
Type
Description

id

string, core

(Read-only) Primary identifier for the seller.

status

string

The seller's status. Allowed values are:

  • Active

  • Disabled

  • Offline

  • Deleted

name

string, core

The name of the seller.

icon

string

(Optional) The relative path to the seller’s logo.

externalId

string, core

The external identifier.

address

object

The address of the seller.

Example:

currency

string

The currency of the seller.

buyers

object

Represents the buyer object.

audit

object

(Read-only) Represents the audit object.

Examples

SELLER OBJECT
{
  "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"
}
THE SELLER OBJECT
{
	"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",
	"buyers": [
		{
			"id": "BUY-2321-7707",
			"name": "My first buyer"
		}
	],
	"audit": {
		"created": {
			"at": "2023-12-14T14:19:13.410Z",
			"by": {
				"id": "USR-0000-0001",
				"icon": null,
				"invited": "2024-02-03T11:59:55.933Z",
				"joined": "2024-02-04T12:59:55.933Z",
				"lastLogin": null,
				"name": "Will Smith"
			}
		},
		"updated": {
			"at": "2024-01-24T09:33:09.073Z",
			"by": {
				"id": "USR-0000-0001",
				"icon": null,
				"invited": "2024-02-03T11:59:55.933Z",
				"joined": "2024-02-04T12:59:55.933Z",
				"lastLogin": "2024-02-05T13:59:55.933Z",
				"name": "Will Smith"
			}
		}
	}
}

Last updated

Was this helpful?