Query parameters
-
extra information of each user on the list
-
maximum count of the user list
-
skip that many users before beginning to return
PUT
/users
curl \
--request PUT 'https://identity.zerionsoftware.com/v1/users' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"xxx_status":42.0,"email":"support@iformbuilder.com","first_name":"Calvin","id":"5e72b386ac43d1414e59188b","last_name":"Johnson"}'
Request examples
{
"xxx_status": 42.0,
"email": "support@iformbuilder.com",
"first_name": "Calvin",
"id": "5e72b386ac43d1414e59188b",
"last_name": "Johnson"
}
Response examples (200)
[
{
"id": "5e72b386ac43d1414e59188b"
},
{
"id": "5e72b386ac43d1414e59188c"
}
]