Landings (Pre-landing/Post-landing)
Get list of custom landings
Get list of custom landings of current user.
get/api/v1/landing
Query parameters
filter_by_namestring nullable
order_by'created_at' | 'updated_at'
order_direction'asc' | 'desc'
'asc' or 'desc'
filter_by_template_idstring uuid nullable
filterByCompanyUserIdstring[] nullable
Filter by company user ID(s)
Filter by company user ID(s)
all_availableboolean
Whether to get all PWAs (including those of other users in the same company, if permissions allow) or only the user's own PWAs
Whether to get all PWAs (including those of other users in the same company, if permissions allow) or only the user's own PWAs
pageinteger
sizeinteger
Response
Successful Response
Example response
{
"items": [
{
"comment": "Some user comments",
"createdAt": "2021-09-01T00:00:00",
"htmlUrl": "https://curie-tech.net/landing/123e4567-e89b-12d3-a456-426614174000",
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "My custom landing",
"owner": {
"email": "example@.com",
"logo_url": "https://example.com/owner_logo.png",
"owner_company_user_id": "d290f1ee-6c54-4fbb-9fa6-0e02b2c3d479"
},
"updatedAt": "2021-09-01T00:00:00",
"userId": "123e4567-e89b-12d3-a456-426614174000"
}
]
}