Skip to main content

Create business partners

The POST /pic/link/business-partners/create endpoint allows you to create new business partners that will interact with the AppliQloud platform. πŸ‘”πŸ’ΌπŸ€

Authorization​

This endpoint requires authentication through Basic Auth with the username and password of the backend that will consume it. To create and configure a backend, follow the backends tutorial

Request parameters​


This request does not contain parameters of type Path

Examples​

curl --location 'https://<identifier>.api.appliqloud.com/pic/link/business-partners/create' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic <token>' \
--data '{
"inputs": [
{
"externalId": "1245",
"name": "AppliQloud",
"email": "contact@appliqloud.com",
"identification": "COMPANY",
"businessPartnerTypeIds": [
"VENDOR"
],
"contacts":[
{
"firstName": "Juan",
"lastName": "PΓ©rez",
"email": "juan.perez@mail.com"
}
]
}
]
}'
caution

Make sure to modify the <identifier> and <token> fields with your company identifier and authentication token respectively.

Responses​


The business partners were created successfully

{
"success": [
{
"id": "32",
"name": "AppliQloud",
"email": "contact@appliqloud.com",
"status": "PENDING_COMPLETION",
"identification": "COMPANY"
"businessPartnerTypeIds": [
"VENDOR"
],
"contacts": [
{
"userId": "perezj12",
"notificationChannels": [
"EMAIL"
]
}
],
"backendMappings": [
{
"backendId": "SAP",
"externalId": "1245"
}
]
}
],
"errors": []
}