🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/partner/createPartnerClient \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"clientContactEmail": "john.smith@acme.com",
"clientContactName": "John Smith",
"clientOrgName": "Acme Corporation",
"suppressWelcomeEmail": false
}
'{
"clientOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"error": true,
"errorMsg": "<string>",
"responseStatus": "BASIC_AUTH_FAILED",
"warningMsg": "<string>"
}Create a client account
curl --request POST \
--url https://api2.rhombussystems.com/api/partner/createPartnerClient \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"clientContactEmail": "john.smith@acme.com",
"clientContactName": "John Smith",
"clientOrgName": "Acme Corporation",
"suppressWelcomeEmail": false
}
'{
"clientOrgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"error": true,
"errorMsg": "<string>",
"responseStatus": "BASIC_AUTH_FAILED",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("partner-api-token").
17Request object for creating a new partner client account.
Email address of the client contact person
"john.smith@acme.com"
Name of the client contact person
"John Smith"
Name of the client organization
"Acme Corporation"
Whether to suppress sending welcome email to the client
false
OK
Response object containing the result of creating a partner client account.
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Status responses for partner web operations.
BASIC_AUTH_FAILED, PASSWORD_MISMATCH, USER_EXISTS, CLIENT_EXISTS, USER_NOT_FOUND, BAD_INPUT, SUCCESS, PASSWORD_TOO_SHORT Was this page helpful?