ERP Link

The ERP Link represents a connection between a Buyer and a Seller object in the Marketplace.

This object contains the following attributes:

Field Name
Data Type
Description

id

string

The primary identifier for the ERP link.

Example: ERP-1234-1234.

status

enum

The status of the object. The allowed values are active or blocked.

note

string

name

string

The names of the buyer and seller.

Example: AGCO Corporation - SoftwareOne Argentina

externalIds

object

A reference to the buyerExternalIdsObject.

Example:

address

object

The address of the buyer in the given seller instance.

companyName

string

The name of the buyer in the given seller instance.

Example: AGCO Corporation

buyer

object

A reference to the buyer object.

seller

object

A reference to the seller object.

audit

object

A reference to the audit object. Allowed values: created, updated, blocked, or unblocked.

Example response

{
	"id": "ERP-0808-7934-2576",
	"buyer": {
		"id": "BUY-0808-7934",		
		"name": "AGCO Corporation"
	},
	"seller": {
		"id": "SEL-1968-2576",		
		"externalId": "AR",
		"name": "SoftwareONE Argentina",
		"icon": "/v1/accounts/sellers/SEL-1968-2576/icon"
	},
	"name": "AGCO Corporation - SoftwareONE Argentina",
	"status": "Active",
	"externalIds": {
		"erpCompanyContact": "US-CON-183485",
		"erpCustomer": "US-SCU-117126",
		"accountExternalId": "WW-100502"
	},
	"address": {
		"addressLine1": "4205 River Green Pkwy",
		"postCode": "30096",
		"city": "DULUTH",
		"state": "GA",
		"country": "US"
	},
    "companyName": "AGCO Corporation",
	"audit": {
		"created": {
			"at": "2025-01-21T12:27:31.716Z",
			"by": {
				"id": "TKN-4113-7170",			
				"name": "[DO NOT REMOVE] Navision Extension"
			}
		},
		"updated": {
			"at": "2025-03-10T12:45:04.479Z",
			"by": {
				"id": "TKN-8915-3154",				
				"name": "Jakub Parteka Token"
			}
		}
	}
}

Last updated

Was this helpful?