Query parameters
-
Global search
-
Current page
-
Number of items per page
-
Determines if all items are selected
-
App\Families\Core\Models\Family Filters: 0, 2, 3
-
App\Families\Core\Models\Family Sorting by name, createdAt
-
Determines whether to return only archived records in the response.
-
Determines whether to return with archived records in the response.
GET
/v1/families/
curl \
--request GET 'https://localhost/v1/families/'
Response examples (200)
{
"data": [
{
"id": "fml_123123123123",
"companyId": "co_123123123123",
"name": "Potter",
"joinedAt": "2023-12-05",
"invitationStatus": "not_invited",
"profilePicture": "https://",
"deletedAt": "2023-12-05 14:30:41",
"archivedAt": "2023-12-05 14:30:41",
"createdAt": "2023-12-05 14:30:41"
}
],
"pagination": {
"total": 15,
"count": 10,
"perPage": 10,
"currentPage": 1,
"totalPages": 2
}
}
Response examples (403)
{
"statusCode": 42.0,
"messages": [
"string"
],
"exception": {}
}