> ## Documentation Index
> Fetch the complete documentation index at: https://docs.finhub.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Individual Activation Readiness Check

> Check if a B2C customer is ready for activation

export function RequiredRunnerHeaders() {
  return <>
      <ParamField header="X-Forwarded-For" type="string" required>
        Client source IP (runner default: `127.0.0.1`)
      </ParamField>
      <ParamField header="X-Tenant-ID" type="string" required>
        Tenant identifier
      </ParamField>
      <ParamField header="X-Forwarded-From" type="string" required>
        Client source identifier (runner default: `integration-client`)
      </ParamField>
      <ParamField header="platform" type="string" required>
        Client platform (runner default: `web`)
      </ParamField>
      <ParamField header="deviceId" type="string" required>
        Device identifier (runner default: `integration-device`)
      </ParamField>
      <ParamField header="Authorization" type="string" required>
        Bearer token
      </ParamField>
    </>;
}

# Individual Activation Readiness Check

Validates KYC and consent prerequisites before activation.

## Endpoint

`GET /api/v2.1/customer/individual/{customerId}/owner/{ownerTenantId}/activation/check`

## Path Parameters

<ParamField path="customerId" type="string" required>Customer UUID</ParamField>
<ParamField path="ownerTenantId" type="string" required>Owner tenant UUID</ParamField>

## Required Headers

<RequiredRunnerHeaders />

## Response Example

```json 200 theme={null}
{
  "code": 200,
  "data": {
    "activationAllowed": true,
    "consentOk": true,
    "verificationOk": true,
    "riskLevel": "LOW",
    "message": "Customer is ready for activation"
  },
  "message": "Customer is ready for activation"
}
```

<Note>
  Used in B2C step runner Step 7.
</Note>


## OpenAPI

````yaml fincheck.yaml GET /api/v2.1/customer/individual/{customerId}/owner/{ownerTenantId}/activation/check
openapi: 3.0.3
info:
  title: Fincheck Endpoint Set
  version: 1.1.0
  description: |
    Focused API spec for Customer APIs and Verification & Compliance endpoints,
    aligned to business-bff B2C/B2B runners and dump payloads.
servers:
  - url: https://sandbox.finhub.cloud
security: []
paths:
  /api/v2.1/customer/individual/{customerId}/owner/{ownerTenantId}/activation/check:
    get:
      operationId: getIndividualActivationReadiness
      parameters:
        - $ref: '#/components/parameters/XForwardedFor'
        - $ref: '#/components/parameters/XTenantId'
        - $ref: '#/components/parameters/XForwardedFrom'
        - $ref: '#/components/parameters/Platform'
        - $ref: '#/components/parameters/DeviceId'
        - $ref: '#/components/parameters/Authorization'
        - in: path
          name: customerId
          required: true
          schema:
            type: string
        - in: path
          name: ownerTenantId
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Readiness status
components:
  parameters:
    XForwardedFor:
      in: header
      name: X-Forwarded-For
      required: true
      schema:
        type: string
      example: 127.0.0.1
    XTenantId:
      in: header
      name: X-Tenant-ID
      required: true
      schema:
        type: string
      example: 97e7ff29-15f3-49ef-9681-3bbfcce4f6cd
    XForwardedFrom:
      in: header
      name: X-Forwarded-From
      required: true
      schema:
        type: string
      example: integration-client
    Platform:
      in: header
      name: platform
      required: true
      schema:
        type: string
      example: web
    DeviceId:
      in: header
      name: deviceId
      required: true
      schema:
        type: string
      example: integration-device
    Authorization:
      in: header
      name: Authorization
      required: true
      schema:
        type: string
      example: Bearer YOUR_ACCESS_TOKEN

````