cURL
curl --request POST \ --url https://api.velt.dev/v1/organizations/usergroups/users/add \ --header 'Content-Type: application/json' \ --header 'x-velt-api-key: <x-velt-api-key>' \ --header 'x-velt-auth-token: <x-velt-auth-token>' \ --data '{ "data": { "organizationId": "<string>", "organizationUserGroupId": "<string>", "userIds": [ "<string>" ] } }'
{ "result": { "status": "success", "message": "Added organization users to group successfully.", "data": { "yourUserId1": { "success": true, "organizationUserGroupId": "yourGroupId", "message": "User added to organization user group." } } } }
POST https://api.velt.dev/v1/organizations/usergroups/users/add
Show properties
{ "data": { "organizationId": "yourOrganizationId", "organizationUserGroupId": "yourGroupId", "userIds": ["yourUserId1"] } }
{ "error": { "message": "ERROR_MESSAGE", "status": "INVALID_ARGUMENT" } }
Was this page helpful?