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

Buyer

The Buyer object represents an individual buyer in the SoftwareOne Marketplace. Buyers are the recipients of invoices issued by SoftwareOne, and are essential for placing orders, creating agreements, and ordering subscriptions.

This object contains the following attributes:

Field
Type
Description

id

string, core

(Read-only) The primary identifier for the buyer.

status

string

The buyer's status. Allowed values:

  • Enabled

  • Active

  • Disabled

  • Deleted

name

string, core

The buyer's name.

icon

string

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

externalIds

object

(Optional) Represents the externalIds object.

address

object

(Optional) Represents the address object containing the buyer's address.

taxId

string

(Optional) The buyer's tax ID.

account

object

Represents the buyer’s account object.

sellers

object

Represents the seller object.

contact

object

Represents the contact object, which contains details of the contact person.

audit

object

(Read-only) Represents the audit object.

Examples

BUYER OBJECT
{
	"id": "BUY-3911-2313",
	"contact": {
		"name": "Will Smith",
		"firstName": "Will",
		"lastName": "Smith",
		"email": "will.smith@adastraflex.com",
		"phone": null
	},
	"externalIds": {
		"erpCompanyContact": "WW-CON-123456",
		"erpCustomer": "WW-SCU-123456"
    },
	"status": "Active",
	"icon": null,
	"address": {
		"addressLine1": "PO Box 31",
		"addressLine2": "Victory Road",
		"postCode": "DE24 8BJ",
		"city": "Derby",
		"state": "Derbs",
		"country": "UK"
	},
	"taxId": "VAT1",
	"name": "Stark Industries"
}

Last updated

Was this helpful?