# Retrieve a note

## Single Note

<mark style="color:blue;">`GET`</mark> `https://{{account_id}}.acquire.io/api/v1/crm/note/get/{{noteId}}`

Retrieve a single note. The **noteId** must be passed in to the endpoint as a path parameter. \
\
**noteId** - The note's ID. To retrieve a list of noteIds, submit a GET request to List all notes.

#### Path Parameters

| Name                                     | Type    | Description    |
| ---------------------------------------- | ------- | -------------- |
| noteId<mark style="color:red;">\*</mark> | integer | ID of the note |

#### Headers

| Name                                            | Type   | Description         |
| ----------------------------------------------- | ------ | ------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | Bearer {{API\_KEY}} |

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

```
{
    "data": {
        "id": 1,
        "contactId": 1,
        "userId": 1,
        "type": "note",
        "title": "this is test note titleeqqw",
        "description": null,
        "dateCreated": "2020-09-11T12:17:33.000Z",
        "users": [
            {
                "id": 1,
                "noteId": 1,
                "userId": 1,
                "user": {
                    "departments": [],
                    "roles": [],
                    "id": 1,
                    "name": "Surendra Suthar",
                    "firstName": "Surendra Suthar",
                    "lastName": "",
                    "photo": "https://uat-drive.acquire.io/suthar/media/2020/10/IMG_2353-(3)-201aff39871a8ccc0f3e9ff0.jpg",
                    "email": "surendra@acquire.io",
                    "clientId": "",
                    "parentId": 0,
                    "type": "user",
                    "accessLevel": null
                }
            }
        ],
        "lastMessage": {
            "id": 1,
            "noteId": 1,
            "parentId": null,
            "userId": 1,
            "type": "message",
            "message": "Instantly engage your customers on any channel using the best communication tools, all from one dashboard.",
            "dateCreated": "2020-09-11T12:17:33.000Z"
        }
    }
}
```

{% endtab %}
{% endtabs %}
