post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateMaaSUser
THIS API IS FOR MARKETPLACE-AS-A-SERVICE CUSTOMERS ONLY. If you are unsure if you are a MaaS customer, please contact [email protected]. Update a maas user from the API method.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
userId | yes | string | User Generated ID |
firstname | no | string | User's first name |
lastname | no | string | User's last name |
emailAddress | yes | string | User's valid email address |
userwidgetKey | no | string | Offering widget key |
field1 | no | string | Some text content |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateMaaSUser
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d userId=784516
-d firstname=john
-d lastname=smith
-d [email protected]
-d userwidgetKey=widgetKey
-d field1=test
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
userDetails | string | Unique identifier code for the MaaS user |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"userDetails": [
true,
[
{
"userId": "19633"
}
]
]
}