Manage User
Manage User
The Manage User API allows a given organization to create or update its users and its sub-organizations users (based on the hierarchy). Users are created by default with limits set to zero, to be later changed by the Limits Management API.
Input Parameters:
C
Format: a-z (upper or lower), numbers, dash and underscore, 5-40 Description: Possible pattern: [email protected]
FirstName
C
Format: Alphanumeric, 10
LastName
C
Format: Alphanumeric, 15
LimitAmount
C
Format: Business rules limitation (e.g. minimum 5$)
Create Request
NewUserPassword
C
Format: 8 -10 chars. Alphanumeric, Including char: _ ! @ # $ % ^ * + ~ ? Required to have at least - One Upper (e.g. A, B...) - One Lower (e.g. a, b...) - One number (e.g. 1, 2…) - One special character (e.g. _ ! @...) Description: New password value provided by the user.
Create Request
OperationType
Y
Format options: Create Update
RoleId
C
Format options: Manager Accounting Inventory Full Issuing Reporting
Status
C
Format: ACTIVE (default) ALL
TargetOrgName
N
Format: Alphanumeric, 6-30
TargetUserName
C
Format: Alphanumeric, 6-30
Output Parameters:
XML Samples
Input XML
<?xml version="1.0" ?>
<PraxellXMLRequest>
<AuthenticationDetails>
<UserName>SA_DemoPM</UserName>
<UserPassword>1q2w3e4r</UserPassword>
<ClientSourceIP></ClientSourceIP>
</AuthenticationDetails>;
<ServiceDetails>
<UniqueRequestId>1805654</UniqueRequestId>
<ServiceName>ManageUser</ServiceName>
</ServiceDetails>
<Origin>
<OriginType>ExtAPI</OriginType>
</Origin>
<ServiceParams>
<NewUserPassword>1q2w3e4r</NewUserPassword>
<LastName>Kraut</LastName>
<Email>[email protected]</Email>
<FirstName>Dan</FirstName>
<RoleId>FBIZ</RoleId>
<OperationType>Create</OperationType>
<TargetUserName>kVZpGXyrXczvfoDGSuTv</TargetUserName>
<LimitAmount>100</LimitAmount>
</ServiceParams>
</PraxellXMLRequest>
<?xml version="1.0"?>
<PraxellXMLResponse>
<ResponseDetails>
<ServiceName>ManageUser</ServiceName>
<SessionId>73406108200756110</SessionId>
<StatusCode>0</StatusCode>
<StatusName>StatusOK</StatusName>
<StatusDescription>NA</StatusDescription>
<ServiceDate>2007-11-13 08:56:02</ServiceDate>
<ServiceId>73406108200756110</ServiceId>
</ResponseDetails>
<ResponseParams></ResponseParams>
</PraxellXMLResponse>
<?xml version="1.0"?>
<PraxellXMLResponse>
<ResponseDetails>
<ServiceName>ManageUser</ServiceName>
<SessionId>07071612200737105</SessionId>
<StatusCode>70012</StatusCode>
<StatusName>ServiceNotAllowed</StatusName>
<StatusDescription>ServiceNotAllowed</StatusDescription>
<ServiceDate>2021-10-01 12:37:50</ServiceDate>
<ServiceId>07071612200737105</ServiceId>
</ResponseDetails>
<ResponseParams>
</ResponseParams>
</PraxellXMLResponse>
Last updated