Skip to main content
GET
/
:projectId
/
lists
/
:listId
/
sub-lists
Get Sub-Lists
curl --request GET \
  --url https://api.replyke.com/api/v6/:projectId/lists/:listId/sub-lists
{
  "id": "<string>",
  "projectId": "<string>",
  "userId": "<string>",
  "name": "<string>",
  "parentId": "<string>",
  "entityIds": [
    {}
  ],
  "subLists": [
    {}
  ],
  "createdAt": "<string>",
  "updatedAt": "<string>"
}
Fetches all sub-lists nested under the specified parent list for the authenticated user.

Path Parameters

listId
string
required
The ID of the parent list

Response

Returns an array of sub-list objects.
id
string
Unique list identifier
projectId
string
Project identifier
userId
string
ID of the user who owns the list
name
string
Name of the list
parentId
string
ID of the parent list
entityIds
array
Array of entity IDs saved in this list
subLists
array
Array of nested sub-lists
createdAt
string
Creation timestamp in ISO 8601 format
updatedAt
string
Last update timestamp in ISO 8601 format

Error Responses

{
  "error": "Missing required parameters in request query",
  "code": "list/missing-params"
}
{
  "error": "Server error",
  "code": "list/server-error",
  "details": "<Error message>"
}

Notes

  • Only sub-lists belonging to the authenticated user and nested under the specified list are returned.
  • The returned sub-lists are populated with their own metadata (e.g., entity IDs, timestamps).
I