🌱 Create a new party entity
curl --request POST \
--url https://backend.sandbox.ecrop.de/ecrop-command/omni-omni/v1/parties \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"legalParty": {
"businessSectors": [],
"companyName": "<string>",
"customersLocations": [
"<string>"
],
"customersPaymentTypes": [],
"description": "<string>",
"registeredAddress": {
"city": "<string>",
"countryIso2": "<string>",
"houseNo": "<string>",
"street": "<string>",
"zip": "<string>"
},
"registrationNumber": "<string>",
"symbol": "<string>"
},
"publicKey": "<string>"
}
'{
"email": "<string>",
"legalParty": {
"businessSectors": [],
"companyName": "<string>",
"customersLocations": [
"<string>"
],
"customersPaymentTypes": [],
"description": "<string>",
"registeredAddress": {
"city": "<string>",
"countryIso2": "<string>",
"houseNo": "<string>",
"street": "<string>",
"zip": "<string>"
},
"registrationNumber": "<string>",
"statute": {
"description": "<string>",
"title": "<string>",
"id": 123,
"url": "<string>"
},
"symbol": "<string>"
},
"naturalParty": {
"firstName": "<string>",
"lastName": "<string>",
"nationality": "<string>",
"residentialAddress": {
"city": "<string>",
"countryIso2": "<string>",
"houseNo": "<string>",
"street": "<string>",
"zip": "<string>"
},
"birthDate": "2023-12-25",
"image": {
"description": "<string>",
"title": "<string>",
"id": 123,
"url": "<string>"
},
"kyc": {
"caseId": "<string>",
"caseResult": [
{
"description": "<string>",
"title": "<string>",
"id": 123,
"url": "<string>"
}
]
},
"links": [
{
"title": "<string>",
"url": "<string>",
"id": 123,
"insertDate": "2023-11-07T05:31:56Z",
"modifyDate": "2023-11-07T05:31:56Z"
}
],
"mobile": "<string>",
"pepFlag": true,
"phoneNumber": "<string>"
}
}Party Management
Party
This API endpoint allows you to create a new party, which can be either a natural person or a legal entity.
POST
/
omni-omni
/
v1
/
parties
🌱 Create a new party entity
curl --request POST \
--url https://backend.sandbox.ecrop.de/ecrop-command/omni-omni/v1/parties \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"legalParty": {
"businessSectors": [],
"companyName": "<string>",
"customersLocations": [
"<string>"
],
"customersPaymentTypes": [],
"description": "<string>",
"registeredAddress": {
"city": "<string>",
"countryIso2": "<string>",
"houseNo": "<string>",
"street": "<string>",
"zip": "<string>"
},
"registrationNumber": "<string>",
"symbol": "<string>"
},
"publicKey": "<string>"
}
'{
"email": "<string>",
"legalParty": {
"businessSectors": [],
"companyName": "<string>",
"customersLocations": [
"<string>"
],
"customersPaymentTypes": [],
"description": "<string>",
"registeredAddress": {
"city": "<string>",
"countryIso2": "<string>",
"houseNo": "<string>",
"street": "<string>",
"zip": "<string>"
},
"registrationNumber": "<string>",
"statute": {
"description": "<string>",
"title": "<string>",
"id": 123,
"url": "<string>"
},
"symbol": "<string>"
},
"naturalParty": {
"firstName": "<string>",
"lastName": "<string>",
"nationality": "<string>",
"residentialAddress": {
"city": "<string>",
"countryIso2": "<string>",
"houseNo": "<string>",
"street": "<string>",
"zip": "<string>"
},
"birthDate": "2023-12-25",
"image": {
"description": "<string>",
"title": "<string>",
"id": 123,
"url": "<string>"
},
"kyc": {
"caseId": "<string>",
"caseResult": [
{
"description": "<string>",
"title": "<string>",
"id": 123,
"url": "<string>"
}
]
},
"links": [
{
"title": "<string>",
"url": "<string>",
"id": 123,
"insertDate": "2023-11-07T05:31:56Z",
"modifyDate": "2023-11-07T05:31:56Z"
}
],
"mobile": "<string>",
"pepFlag": true,
"phoneNumber": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.ecrop.de/llms.txt
Use this file to discover all available pages before exploring further.
Additional Examples for Party creation
{
"email": "john.doe@example.com",
"publicKey": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwDNqC/f\n... [Rest of Public Key] ...\n-----END PUBLIC KEY-----",
"naturalParty": {
"firstName": "John",
"lastName": "Doe",
"salutation": "MR",
"nationality": "DE",
"phoneNumber": "+49123456789",
"mobile": "+49987654321",
"residentialAddress": {
"countryIso2": "DE",
"city": "Berlin",
"street": "Example Street",
"houseNo": "123",
"zip": "12345"
},
"pepFlag": false,
"birthDate": "1990-01-15",
"kyc": {}, // KYC data will be handled separately
"links": [] // No social media links provided in this example
}
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
⌘I