# Get Account

## Get Account Details

<mark style="color:green;">**`GET`**</mark> `/v1/account`

This API will return the account's details.

**Headers**

| Name          | Value              |
| ------------- | ------------------ |
| Content-Type  | `application/json` |
| Authorization | `Bearer <idToken>` |

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
    "statusCode": 200,
    "statusMessage": "OK",
    "payload": {
        "id": "a70b4887-f564...",
        "clientName": "Senmo Tech...",
        "phoneNumber": "+35700000000",
        "contactEmail": "test@senmo.io",
        "status": "active",
        "createdAt": "2024-10-09T09:14:11.248Z",
        "updatedAt": "2024-10-09T09:14:11.248Z"
    }
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "error": "Invalid request"
}
```

{% endtab %}
{% endtabs %}
