ERP Link
The ERP Link represents a connection between a Buyer and a Seller object in the Marketplace. The ERP Link object contains the following properties:
Field
Type
Description
id
string
The primary identifier for the ERP link.
Example: ERP-1234-1234.
status
enum
The state of the object.
Possible values: Active
or Blocked
note
string
name
string
Represents the buyer and seller names.
Example: AGCO Corporation - SoftwareONE Argentina
externalIds
BuyerExternalIdsObject
Example:
{
"erpCompanyContact": "WW-CON-123456",
"erpCustomer": "WW-SCU-123456",
"erpCustomerDiscountGroup": "WW-12345"
}
companyName
string
The name of the Buyer in the given Seller instance.
Example: AGCO Corporation
audit
A reference to the Audit object.
Possible values: Created
, Updated
, Blocked
, or Unblocked
.
Example:
{
"created": { "at": "...", "by": { } },
"updated": { "at": "...", "by": { } },
"blocked": { "at": "...", "by": { } },
"unblocked": { "at": "...", "by": { } }
}
Example
{
"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?