# API: Get notes list
# listAdminNotes
Get a list of notes of the item.
# Required parameters
Parameter | Description |
---|---|
item_id | Item id |
item_type | Item type, possible values: account, admin, client, domain, draft, estimate, invoice, order, rackitem |
# Request
GET /admin/api.php?api_id=API_ID&api_key=API_KEY&call=listAdminNotes&item_id=ITEM_ID&item_type=ITEM_TYPE
# PHP Samples
# Response
{
"success": true,
"notes": [
{
"id": "10",
"type": "account",
"rel_id": "1",
"admin_id": "1",
"date": "2018-08-17 04:45:17",
"note": "Example note",
"title": null,
"firstname": "Default",
"lastname": "User"
}
],
"call": "listAdminNotes",
"server_time": 1534506671
}