GET Get List​
GET
/lists/{id}
Retrieve a single contact list by its ID.
The list object is returned at the top level — there is no list wrapper key. A missing id yields null rather than a 404.
Required capability: fcrm_manage_contact_cats
Enforced by ListPolicy::verifyRequest(), the policy default for this route group.
Authorizations​
ApplicationPasswords
WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password
Type
API Key (header: Authorization)
Parameters​
Path Parameters
id*
The ID of the list to retrieve.
Type
Requiredinteger
Responses​
List found successfully.
application/json
JSON
{
"id": 0,
"title": "string",
"slug": "string",
"description": "string",
"is_public": "string",
"created_at": "string",
"updated_at": "string"
}