curl --request PUT \
--url https://api.getcargo.io/v1/revenueOrganization/members/{uuid} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"meta": {}
}'{
"member": {
"uuid": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"profileImage": "<string>",
"email": "<string>",
"connectors": [
{
"uuid": "<string>",
"userId": "<string>"
}
],
"meta": {},
"workspaceUuid": "<string>",
"archivedAt": "<string>",
"createdAt": "<string>"
}
}Update a member
curl --request PUT \
--url https://api.getcargo.io/v1/revenueOrganization/members/{uuid} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"meta": {}
}'{
"member": {
"uuid": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"profileImage": "<string>",
"email": "<string>",
"connectors": [
{
"uuid": "<string>",
"userId": "<string>"
}
],
"meta": {},
"workspaceUuid": "<string>",
"archivedAt": "<string>",
"createdAt": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Request body schema.
Member metadata.
Show child attributes
Successful response
Updated member details.
Show child attributes
Was this page helpful?