Put
/v1/members/{id}
The “Update Member by ID” method is used to update a specific member. The purpose of “Update Member by ID” is to allow the Distributor/Governance and Control Account users to update the members of their Cloud Consoles.
Limitations include: Only users with specific permissions can use this endpoint!
Security
HTTP
Type basic
Path parameters
id
integerRequired
Body parameters
string
Example{
"firstName": "",
"lastName": "",
"password": "",
"username": "",
"memberRole": "root",
"mfa": false,
"active": true,
"reinstate": true,
"address1": null,
"address2": null,
"country": null,
"city": null,
"stateName": null,
"zip": null,
"phone": ""
}
Responses
200
OK
string
Example{
"id": 12345,
"subAccountId": 32455,
"firstName": "",
"lastName": "",
"username": "",
"memberRole": "root",
"email": "",
"status": "Active",
"mfa": false,
"imageUrl": null,
"creationDate": "2023-12-19T09:35:47.598Z",
"address1": null,
"address2": null,
"country": null,
"city": null,
"stateName": null,
"zip": null,
"phone": null
}