GET /portal/usersΒΆ
Get a list of managed portal users.
Query parameters:
Name |
Type |
Description |
---|---|---|
|
boolean, optional, default: false |
readable output formatting |
Example request:
Fetch all users.
GET /portal/users HTTP/1.1
Host: api.ereceipts.co.uk
Accept: application/json
Example response:
HTTP/1.1 200 OK
Content-Length: 110
Content-Type: application/json; charset=UTF-8
{
"users": [
{
"email": "me@example.com"
},
{
"email": "you@example.com"
}
]
}