Notus API
Know your customer

Create a business from a verification session

Creates a new business entity from a completed standard business verification session. This endpoint should be called after the verification session has been processed and approved.

POST
/api/v1/kyc/business-verification-sessions/standard/{sessionId}/business
x-api-key<token>

In: header

Path Parameters

sessionIdstring
externalIdstring

Response Body

curl -X POST "https://api.notus.team/api/v1/kyc/business-verification-sessions/standard/string/business" \  -H "Content-Type: application/json" \  -d '{    "externalId": "string"  }'
{
  "business": {
    "id": "string",
    "projectId": "string",
    "legalName": "string",
    "externalId": "string",
    "document": {
      "id": "string",
      "type": "string",
      "category": "string"
    },
    "createdAt": "string",
    "updatedAt": "string"
  }
}