Create a corporate identity for a business customer. The information provided must be accurate and will be passed on for KYB verification with our partner.
The profile Id which a specific identity, instrument or transaction type is linked to.
Profiles contain configuration and determine behavioral aspects of the newly created transaction, for example, fees that may apply.
You can have one or more profiles linked to your application, and these can be used to drive different behaviors according to your product's needs.
Profile Ids can be found in the Multi Portal, in the API Credentials page.
The tag field is a custom field that can be used to search and filter.
The root user needs to be a director or a legal representative of the corporate that is being onboarded - this user cannot be deactivated.
Root users need to verify their email address and mobile number, as well as complete KYC as part of the Corporate's due diligence process.
The details associated with the company being on-boarded. The details provided need to match exactly with the details provided during KYB.
The IP address of the corporate user doing the registration.
The currency expressed in ISO-4217 code. Example: GBP, EUR, USD.
Fee groups allow the possibility to charge different fees to users under the same profile. If fee groups are not required, ignore this field.
The industry of the identity.
The corporate's source of funds.
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/corporates
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/corporates
- CreateCorporateRootUser
- CreateCorporateRootUserId
curl -i -X POST \
https://sandbox.weavr.io/multi/corporates \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-H 'idempotency-ref: string' \
-d '{
"profileId": "string",
"tag": "string",
"rootUser": {
"name": "string",
"surname": "string",
"email": "user@example.com",
"mobile": {
"countryCode": "stri",
"number": "string"
},
"companyPosition": "DIRECTOR",
"dateOfBirth": {
"year": 1900,
"month": 1,
"day": 1
},
"tag": "string",
"locale": "en-GB",
"brand": "string"
},
"company": {
"type": "SOLE_TRADER",
"businessAddress": {
"addressLine1": "string",
"addressLine2": "string",
"city": "string",
"postCode": "string",
"state": "string",
"country": "st"
},
"name": "string",
"registrationNumber": "string",
"registrationCountry": "st"
},
"industry": "ACCOUNTING",
"sourceOfFunds": "LABOUR_CONTRACT",
"sourceOfFundsOther": "string",
"acceptedTerms": true,
"ipAddress": "string",
"baseCurrency": "str",
"feeGroup": "string"
}'Success
The profile Id which a specific identity, instrument or transaction type is linked to.
Profiles contain configuration and determine behavioral aspects of the newly created transaction, for example, fees that may apply.
You can have one or more profiles linked to your application, and these can be used to drive different behaviors according to your product's needs.
Profile Ids can be found in the Multi Portal, in the API Credentials page.
The tag field is a custom field that can be used to search and filter.
Must be set to true to indicate that the root user has accepted the terms and conditions.
The currency expressed in ISO-4217 code. Example: GBP, EUR, USD.
Fee groups allow the possibility to charge different fees to users under the same profile. If fee groups are not required, ignore this field.
The time when the Corporate was created, expressed in Epoch timestamp using millisecond precision.
Indicates the type of corporate entity based on its retail status.
The industry of the identity.
The corporate's source of funds.
{ "id": { "type": "CONSUMER", "id": "string" }, "profileId": "string", "tag": "string", "rootUser": { "id": { … }, "name": "string", "surname": "string", "email": "user@example.com", "mobile": { … }, "companyPosition": "DIRECTOR", "active": true, "emailVerified": true, "mobileNumberVerified": true, "dateOfBirth": { … }, "tag": "string", "locale": "en-GB", "brand": "string", "passwordAlreadySet": true }, "company": { "name": "string", "type": "SOLE_TRADER", "registrationNumber": "string", "registeredAddress": { … }, "businessAddress": { … }, "countryOfRegistration": "st", "incorporatedOn": { … } }, "industry": "ACCOUNTING", "sourceOfFunds": "LABOUR_CONTRACT", "sourceOfFundsOther": "string", "acceptedTerms": true, "ipAddress": "string", "baseCurrency": "str", "feeGroup": "string", "creationTimestamp": 0, "retailQualifier": "RETAIL" }