userName
|
This is the user account name of the Zetadocs Expenses user
|
Yes
|
Char(255)
|
Must be in a valid email address format (with a domain that is allowed by the Zetadocs Expenses account)
|
ouserName value is missing Expected response that Zetadocs Expense will return to SCIM interface:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"scimType": null,
"detail": "A userName is required.",
"status": 403
}
oUserName exceeds the maximum allowed length Expected response that Zetadocs Expense will return to SCIM interface:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"scimType": null,
"detail": "The field userName must be a string with a maximum length of 255.",
"status": 403
}
oUserName is not formatted as an email address and/or domain is not allowed Expected response that Zetadocs Expense will return to SCIM interface:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"scimType": null,
"detail": "Account Domain is not permitted for this account.",
"status": 403
}
|
|
name.GivenName
|
This is the first name of the user
|
Yes
|
Char(100)
|
|
ogivenName value is missing Expected response that Zetadocs Expense will return to SCIM interface:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"scimType": null,
"detail": "A givenName is required.",
"status": 403
}
ogivenName exceeds the maximum allowed length Expected response that Zetadocs Expense will return to SCIM interface:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"scimType": null,
"detail": "The field givenName must be a string with a maximum length of 100.",
"status": 403
}
|
|
name.familyName
|
This is the last name of the user
|
Yes
|
Char(100)
|
|
ofamilyName value is missing Expected response that Zetadocs Expense will return to SCIM interface:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"scimType": null,
"detail": "A familyName is Required.",
"status": 403
}
ofamilyName exceeds the maximum allowed length Expected response that Zetadocs Expense will return to SCIM interface:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"scimType": null,
"detail": "The field familyName must be a string with a maximum length of 100.",
"status": 403
}
|
|
emails[type eq "work"].value
|
This is the email address of the user
|
Yes
|
Char(255)
|
Must have a valid email address format
|
oAttribute value is missing Expected response that Zetadocs Expense will return to SCIM interface:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"scimType": null,
"detail": "A work email is Required.",
"status": 403
}
oAttribute value exceeds the maximum allowed length {
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"scimType": null,
"detail": "The field work email must be a string with a maximum length of 255.",
"status": 403
}
|
|
active
|
This attribute defines whether a user is active or not
|
Yes
|
Boolean
|
|
oThere is already an active user account for this user (i.e. cannot duplicate) Expected response that Zetadocs Expense will return to SCIM interface:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"scimType": null,
"detail": "User account is already taken.",
"status": 409
}
oThe limit on the allowed number of Zetadocs Expenses users has been reached Expected response that Zetadocs Expense will return to SCIM interface:
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:Error"
],
"scimType": null,
"detail": "Reached user limit.",
"status": 403
}
|
|