Usercreateapiv1
user object
Description for user in UserCreateApiV1
User identifier used for accessing Mambu.
User's password. Must respect security restrictions defined in Mambu.
role object
The encoded key of the role to create the user with.
permissions object
States whether the user has access to all the branches in the application.
States whether the user has access to entities assigned to other credit officers.
User's first name.
User's last name.
User's language, defaults to ENGLISH if not specified.
Possible values: [ENGLISH, PORTUGESE, SPANISH, RUSSIAN, FRENCH, GEORGIAN, CHINESE, INDONESIAN, ROMANIAN]
User's assigned branch (encodedKey). Required if the user is a teller or credit officer.
User's email address. Must be valid.
User's home phone.
User's mobile phone number.
Whether the user will use two factor authentication when logging in the application.
managedBranched object[]
List of user's managed branched (with encoded keys).
transactionLimits object
Map specifying user transaction limits for various operations.
APPROVE_LOAN object
DISBURSE_LOAN object
APPLY_FEE object
MAKE_DEPOSIT object
MAKE_WITHDRAWAL object
MAKE_REPAYMENT object
Notes for the user to be created.
Possible values: <= 255 characters
customInformation object[]
List of custom field values for the user to be created.
{
"user": {
"username": "string",
"password": "string",
"role": {
"encodedKey": "string"
},
"permissions": {
"canManageAllBranches": true,
"canManageEntitiesAssignedToOtherOfficers": true
},
"firstName": "string",
"lastName": "string",
"language": "ENGLISH",
"assignedBranchKey": "string",
"email": "user@example.com",
"homePhone": "string",
"mobilePhone1": "string",
"twoFactorAuthentication": true,
"managedBranched": [
{
"encodedKey": "string",
"branchKey": "string"
}
],
"transactionLimits": {
"APPROVE_LOAN": {
"amount": "string"
},
"DISBURSE_LOAN": {
"amount": "string"
},
"APPLY_FEE": {
"amount": "string"
},
"MAKE_DEPOSIT": {
"amount": "string"
},
"MAKE_WITHDRAWAL": {
"amount": "string"
},
"MAKE_REPAYMENT": {
"amount": "string"
}
},
"notes": "string"
},
"customInformation": [
{
"value": "string",
"customFieldId": "string",
"customFieldSetGroupIndex": "string"
}
]
}