List Contacts
GET
/v1/bolts/{boltId}/usersList a Bolt's users.
Request
Path Params
boltId
string
required
The ID of your Bolt.
Example:
1234
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
array [object {3}]
required
id
integer
required
type
string
required
attributes
object
required
Example
{
"data": [
{
"id": 0,
"type": "string",
"attributes": {
"name": "string",
"email": "string",
"mobile": "string",
"country": "string",
"role": "string",
"pending": true
}
}
]
}
Last modified: 5 months ago