Parameter | Type | Default | Description |
---|---|---|---|
assigned | boolean | null | When true, returns only assigned links. When false, only unassigned. |
Key | Type | Optional | Description |
---|---|---|---|
abm_links[].id | integer | no | |
abm_links[].url | string | no | |
abm_links[].assigned_to_user_id | string | yes | ID of user the link has been assigned to |
abm_links[].assigned_at | datetime | yes | Time of assignment to user |
abm_links[].created_at | datetime | no | Time of creation |
abm_links[].updated_at | datetime | no | Time of last update |
{
"abm_links": [
{
"id": 1,
"url": "https://example.com/1",
"assigned_to_user_id": "some-user-uuid",
"assigned_at": null,
"created_at": "2021-08-02T10:17:51.150Z",
"updated_at": "2021-08-02T10:17:51.150Z"
}
],
"pagination_info": {} // Pagination info - see 'Pagination info'
}