We're delighted to present you with the comprehensive API documentation for PEAX. This all-in-one workspace for API design offers you a clear, concise, and interactive exploration of our API functionalities.
Authorization: Bearer ********************
{
"businessAccount": {
"email": "info@company.com",
"name": "ACME Corporation",
"type": "COMPANY_IN_COMMERCIAL_REGISTER",
"uid": "CHE-123.456.789",
"domicileAddress": {
"name": "string",
"addressSupplement": "example suplement",
"street": "Main Street",
"streetNumber": "123",
"poBox": "12345",
"postalCode": "1234",
"city": "Zurich",
"country": "Switzerland"
},
"forwardingAddress": {
"name": "string",
"addressSupplement": "example suplement",
"street": "Main Street",
"streetNumber": "123",
"poBox": "12345",
"postalCode": "1234",
"city": "Zurich",
"country": "Switzerland"
},
"subscription": "plus"
},
"members": [
{
"email": "john.doe@example.com",
"firstName": "John",
"lastName": "Doe",
"verified": true,
"signatoryAuthorization": true,
"domicileAddress": {
"name": "string",
"addressSupplement": "example suplement",
"street": "Main Street",
"streetNumber": "123",
"poBox": "12345",
"postalCode": "1234",
"city": "Zurich",
"country": "Switzerland"
}
}
]
}
curl --location --request POST 'https://proxy-stage.peax.ch/business-accounts/sources//client-references/' \
--header 'Authorization: Bearer {{JWT}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"businessAccount": {
"email": "info@company.com",
"name": "ACME Corporation",
"type": "COMPANY_IN_COMMERCIAL_REGISTER",
"uid": "CHE-123.456.789",
"domicileAddress": {
"name": "string",
"addressSupplement": "example suplement",
"street": "Main Street",
"streetNumber": "123",
"poBox": "12345",
"postalCode": "1234",
"city": "Zurich",
"country": "Switzerland"
},
"forwardingAddress": {
"name": "string",
"addressSupplement": "example suplement",
"street": "Main Street",
"streetNumber": "123",
"poBox": "12345",
"postalCode": "1234",
"city": "Zurich",
"country": "Switzerland"
},
"subscription": "plus"
},
"members": [
{
"email": "john.doe@example.com",
"firstName": "John",
"lastName": "Doe",
"verified": true,
"signatoryAuthorization": true,
"domicileAddress": {
"name": "string",
"addressSupplement": "example suplement",
"street": "Main Street",
"streetNumber": "123",
"poBox": "12345",
"postalCode": "1234",
"city": "Zurich",
"country": "Switzerland"
}
}
]
}'
{
"status": "SUCCESS",
"peaxId": "string",
"members": [
{
"peaxId": "string",
"link": "string"
}
]
}