New: BRL/PIX transfers now supported View changelog
Business Representative

Create a Business Representative

Create a new business representative for a customer.

POST
/v2/business-representative
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://api.spherepay.co/v2/business-representative" \  -H "Content-Type: application/json" \  -d '{    "customerId": "customer_2f283221a9d44ada800ac7f11f640402",    "type": "individual",    "email": "james.wilson@acmecorp.example.com",    "phone": "+13125559876",    "address": {      "line1": "233 South Wacker Drive",      "city": "Chicago",      "country": "USA"    },    "personalInformation": {      "taxIdentificationNumber": "123456789",      "taxIdentificationNumberType": "ssn",      "taxIdentificationNumberCountry": "USA"    },    "representationDetails": {      "roles": [        "ubo"      ],      "ownershipPercentage": "50",      "isControlPerson": true,      "isSigner": true,      "relationshipEstablishedAt": "2020-03-15",      "title": "CEO"    }  }'
{
  "id": "associatedPerson_d972d2f70b9f4d3c8d7cfb32593f395b",
  "customerId": "customer_2f283221a9d44ada800ac7f11f640402",
  "type": "individual",
  "email": "james.wilson@acmecorp.example.com",
  "phone": "+13125559876",
  "representationDetails": {
    "roles": [
      "ubo"
    ],
    "ownershipPercentage": "50",
    "isControlPerson": true,
    "isSigner": true,
    "relationshipEstablishedAt": "2020-03-15",
    "title": "CEO"
  },
  "verificationProfiles": [
    {
      "name": "ubo_kyc_profile_a",
      "status": "incomplete",
      "criteria": {
        "complete": [
          "email_address",
          "phone_number",
          "residential_address",
          "tax_identification_number",
          "ownership_percentage",
          "is_control_person",
          "is_signer",
          "relationship_established_at",
          "title"
        ],
        "pending": [],
        "required": [
          "identity_document",
          "liveness_report_document",
          "proof_of_address_document"
        ],
        "errors": []
      }
    }
  ],
  "createdAt": "2026-03-10T00:00:08.986Z",
  "updatedAt": "2026-03-10T00:00:08.986Z"
}
{
  "status": 400,
  "detail": "Invalid request parameters",
  "code": "address/invalid",
  "correlationId": "28c61e885c6e5eaa78c1a2183a9b883c"
}
{
  "status": 404,
  "detail": "Resource not found",
  "code": "resource/not-found",
  "correlationId": "28c61e885c6e5eaa78c1a2183a9b883c"
}
{
  "status": 422,
  "detail": "Validation failed",
  "code": "validation/failed",
  "correlationId": "28c61e885c6e5eaa78c1a2183a9b883c",
  "errors": [
    {
      "detail": "Invalid email format",
      "pointer": "/email"
    },
    {
      "detail": "Name is required",
      "pointer": "/name"
    }
  ]
}

Last updated on