- URL:
https://caoloon.com/portal/customer/
- HTTP Methods:
GET, POST
Property | Type | Description |
---|
pageSize | Int | Size of the pages to return. |
page | Int | Which page to return. |
fetch('https://caoloon.com/portal/customer/?pageSize=2', {
method: 'GET',
})
.then((response) => response.json())
.then((json) => console.log(json));
Expand
{
"models": [
{
"companyName": "",
"coc": null,
"invitedBy": "testuitlener@caoloon.com",
"contact": "testmail1@caoloon.com",
"updatedAt": "2025-10-02T14:32:33.541494+02:00",
"status": "Uitgenodigd",
"guid": "75ec49ab-664a-4669-bf8d-00ed3b580271",
"href": "https://test.caolooin.com/portal/customer/75ec49ab-664a-4669-bf8d-00ed3b580271/"
},
{
"companyName": "",
"coc": null,
"invitedBy": "testuitlener@caoloon.com",
"contact": "testmail2@caoloon.com",
"updatedAt": "2025-10-02T12:06:50.130832+02:00",
"status": "Uitgenodigd",
"guid": "421a7581-231a-4798-9d77-306fa50dc21a",
"href": "https://caoloon.com/portal/customer/421a7581-231a-4798-9d77-306fa50dc21a/"
}
],
"nextPage": 2,
"total": 63,
"pageSize": 2,
"page": 1
}
fetch('http://caoloon.com/portal/customer/421a7581-231a-4798-9d77-306fa50dc21a/', {
method: 'GET',
})
.then((response) => response.json())
.then((json) => console.log(json));
Expand
{
"companyName": "",
"coc": null,
"invitedBy": "testuitlener@caoloon.com",
"contact": "testmail2@caoloon.com",
"updatedAt": "2025-10-02T12:06:50.130832+02:00",
"status": "Uitgenodigd",
"guid": "421a7581-231a-4798-9d77-306fa50dc21a",
"href": "http://caoloon.com/portal/customer/421a7581-231a-4798-9d77-306fa50dc21a/"
}