Activate a user
POST/users/:id/activate
Re-activate a previously deactivated user.
Requestโ
Path Parameters
id uuidrequired
The unique identifier of the Copilot API user.
Example: 23A9981B-9E46-4ADB-BB0B-8E406C624540
- application/json
Body
required
object
Responsesโ
- 200
User.
- application/json
- Schema
- Example (from schema)
Schema
id uuidrequired
A unique identifier.
activated booleanrequired
Always true unless you explicitly deactivate the user.
external_id stringnullable
Possible values: <= 256 characters
A unique identifier for the user from another system which is given to Nabla.
metadata objectnullable
You can use this parameter to attach key-value data to the object. You can specify up to 50 keys, with key names up to 40 characters long, all values must be of type string and up to 500 characters long.
You should not use this to store Protected Health Information (PHI) or any patient-related data.
property name* string
created_at date-timerequired
The creation date of this object, in ISO 8601 format.
{
"id": "98FCE1EF-DBCA-41EF-8BC7-4D1621AC07C6",
"activated": true,
"external_id": "string",
"metadata": {},
"created_at": "2022-03-10T19:16:23.456Z"
}
Loading...