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

# Commission des Affaires Sociétaires (CAC)

> Vérifiez une entreprise nigériane enregistrée à l'aide de son numéro d'enregistrement CAC.

L'endpoint CAC renvoie les détails vérifiés d'une entreprise enregistrée depuis la base de données de la Corporate Affairs Commission, incluant l'adresse, la date d'enregistrement et le nom approuvé.

## Endpoint

```
POST /api/onboarding/nigeria_kyc/cac/
```

## Requête

### En-têtes

| En-tête          | Valeur                | Requis |
| ---------------- | --------------------- | ------ |
| `x-access-token` | Votre clé secrète API | Oui    |
| `Content-Type`   | `application/json`    | Oui    |

### Paramètres de corps

| Paramètre             | Type   | Requis | Description                                                                                            |
| --------------------- | ------ | ------ | ------------------------------------------------------------------------------------------------------ |
| `registration_number` | string | Oui    | Le numéro d'enregistrement CAC                                                                         |
| `company_name`        | string | Oui    | Nom de l'entreprise enregistré                                                                         |
| `company_type`        | string | Oui    | Type d'entité : `"RC"` (société enregistrée), `"BN"` (nom commercial) ou `"IT"` (fiduciaire incorporé) |

### Exemple

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST "https://adhere-api.smartcomply.com/api/onboarding/nigeria_kyc/cac/" \
    -H "x-access-token: YOUR_SECRET_KEY" \
    -H "Content-Type: application/json" \
    -d '{"registration_number": "1261103", "company_name": "JOYCE VENTURES", "company_type": "RC"}'
  ```

  ```python Python theme={null}
  import requests
  response = requests.post(
      "https://adhere-api.smartcomply.com/api/onboarding/nigeria_kyc/cac/",
      headers={"x-access-token": "YOUR_SECRET_KEY", "Content-Type": "application/json"},
      json={"registration_number": "1261103", "company_name": "JOYCE VENTURES", "company_type": "RC"},
  )
  ```
</CodeGroup>

## Réponse

### 200 OK

| Champ                     | Type    | Description                                      |
| ------------------------- | ------- | ------------------------------------------------ |
| `data[].id`               | integer | ID d'enregistrement interne                      |
| `data[].rcNumber`         | string  | Numéro d'enregistrement CAC                      |
| `data[].approvedName`     | string  | Nom de l'entreprise approuvé par le gouvernement |
| `data[].address`          | string  | Adresse de l'entreprise enregistrée              |
| `data[].city`             | string  | Ville                                            |
| `data[].state`            | string  | État                                             |
| `data[].lga`              | string  | Zone de gouvernement local                       |
| `data[].email`            | string  | E-mail de l'entreprise (si disponible)           |
| `data[].registrationDate` | string  | Date d'enregistrement CAC                        |

```json theme={null}
{
  "status": "success",
  "data": [
    {
      "id": 8693434,
      "lga": "Ibadan North West",
      "city": "Mokola Ibadan",
      "email": "joyceventures@gmail.com",
      "state": "OYO",
      "address": "Okunmade street, Opposite Veterinary Hospital",
      "rcNumber": "1261103",
      "approvedName": "JOYCE VENTURES",
      "registrationDate": "2023-07-11T08:39:54.898+00:00"
    }
  ],
  "message": "Business Registration details retrieved successfully"
}
```

### 400 Bad Request

```json theme={null}
{
  "status": "failed",
  "data": [],
  "message": "Sorry, your check cannot be processed at the moment. Please try again in a few minutes"
}
```

### 401 Unauthorized

```json theme={null}
{
  "status": "failed",
  "message": "Authentication credentials were not provided."
}
```


## OpenAPI

````yaml POST /api/onboarding/nigeria_kyc/cac/
openapi: 3.0.3
info:
  title: Adhere API
  description: >-
    Identity verification, credit checks, transaction monitoring, and loan fraud
    detection across Africa.
  version: 3.0.0
servers:
  - url: https://adhere-api.smartcomply.com
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Nigeria KYC
  - name: Kenya KYC
  - name: Ghana KYC
  - name: Rwanda KYC
  - name: Uganda KYC
  - name: Document Verification
  - name: Biometrics
  - name: Individual Credit
  - name: Business Credit
  - name: Transaction Monitoring
  - name: Transaction Screening
  - name: Transaction KYC
  - name: Loan Fraud
  - name: User Journey
paths:
  /api/onboarding/nigeria_kyc/cac/:
    post:
      tags:
        - Nigeria KYC
      summary: CAC Verification
      operationId: cac
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - registration_number
                - company_name
                - company_type
              properties:
                registration_number:
                  type: string
                  description: The CAC registration number
                  example: '1261103'
                company_name:
                  type: string
                  description: Registered company name
                  example: JOYCE VENTURES
                company_type:
                  type: string
                  description: >-
                    Entity type: RC (registered company), BN (business name), or
                    IT (incorporated trustee)
                  example: RC
      responses:
        '200':
          description: CAC verified
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    BadRequest:
      description: Bad Request
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                example: failed
              data:
                type: array
                items: {}
              message:
                type: string
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: string
                example: failed
              message:
                type: string
                example: Authentication credentials were not provided.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-access-token
      description: Your Adhere API secret key

````