EntityUser

Get all entity users

GET
Get all entity users

Path parameters

entityIdstringRequired

Response

This endpoint returns a list of objects
id
string
roles
list of strings
createdAt
datetime
updatedAt
datetime
foreignId
stringOptional
The ID used to identify this user in your system.
email
stringOptional
name
stringOptional
GET
1curl https://api.mercoa.com/entity/:entityId/users \
2 -H "Authorization: Bearer <token>"
200
Retrieved
1[
2 {
3 "id": "string",
4 "roles": [
5 "string"
6 ],
7 "createdAt": "2023-01-01T00:00:00Z",
8 "updatedAt": "2023-01-01T00:00:00Z",
9 "foreignId": "string",
10 "email": "string",
11 "name": "string"
12 }
13]