> For the complete documentation index, see [llms.txt](https://pixels-solution-ltd.gitbook.io/ct-dass-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pixels-solution-ltd.gitbook.io/ct-dass-documentation/api-structure/collation-activities/is-the-ra-collation-completed-yes-no-if-yes-provide-date-and-time.md).

# Is the RA collation completed? (Yes/No) If Yes provide date & time

This is a yes or no answer to report whether the RA collation was completed? and If Yes provide date & time.

### API Base root

{% hint style="info" %}
[https://inec-ctdass.ng](#api-base-root)
{% endhint %}

### API Endpoint

{% hint style="info" %}
<https://api.verified.africa/sfx-verify/v3/id-service/>
{% endhint %}

### Headers

Our service accepts headers for authentication. See below the headers to pass to the API

| Header        | Type   |                  |
| ------------- | ------ | ---------------- |
| Authorization | String | Bearer {API Key} |
| Sec Key       | String | {Sec Key}        |

### Request

<table><thead><tr><th>Request Parameter</th><th width="96">Status</th><th>Description</th><th>Test Data</th></tr></thead><tbody><tr><td>Search Parameter (Election ID)</td><td>required</td><td>This is the Election ID unique to the election you wish to fetch information from for every election managed on CT-DASS.</td><td>Use 13 for the election ID of Ekiti State Governorship Election 2022</td></tr><tr><td>Constituency</td><td>required</td><td><p>This is the constituency for the election you wish to fetch information from for every election managed on CT-DASS. It can be: 1. LGA (Local Government Area)</p><p>2. RA (Registration Area)</p></td><td>LGA</td></tr><tr><td>Code</td><td>required</td><td>This refers to as the delimitation data/code for the constituency of the election. </td><td>367</td></tr></tbody></table>

{% code title="Is the RA collation completed? (Yes/No) If Yes provide date & time" overflow="wrap" %}

```actionscript
{
    "electionId": "13",
    "constituency": "LGA",
    "code": "367"
}
```

{% endcode %}

### Response

| Response Parameter | Type | Description |
| ------------------ | ---- | ----------- |
| ResponseCode       | Char |             |
|                    |      |             |
|                    |      |             |

{% code title="Is the RA collation completed? (Yes/No) If Yes provide date & time" overflow="wrap" %}

```json
{
    "status": "success",
    "message": "13 records found",
    "error": "",
    "data": "YES"
}
```

{% endcode %}

{% hint style="info" %}
**"status"** can  be **"success"** or **"fail"**

**"data"** contains the actual results

**"message"** gives little information about the result. **Example**: **25 records found**; No record found

**"error"** gives information about error encountered while trying to fetch results&#x20;
{% endhint %}
