PUT
/v1/organizations/:organizationId/integrations/harmony-mobile/
Copy to clipboard
Update the credentials of the HarmonyMobile integration
Required Permission: mdm.integration.harmonyMobile.update
Update the credentials of the HarmonyMobile integration
Request
Add parameter in header
authorization
Example:
Authorization: Bearer <token>
organizationId
string
required
Body Params
application/json
token
string
required
portalAccountId
string
required
gwAddress
string
required
{
"token": "string",
"portalAccountId": "string",
"gwAddress": "string"
}
Responses
200 Response
application/json
status
boolean
required
data
object
required
username
string
optional
password
string
optional
token
string
optional
portalAccountId
string
optional
gwAddress
string
optional
{
"status": true,
"data": {
"username": "string",
"password": "string",
"token": "string",
"portalAccountId": "string",
"gwAddress": "string"
}
}
401 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 4002,
"message": "No auth token"
}
}
404 Response
application/json
status
boolean
optional
error
object
optional
code
number
optional
message
string
optional
{
"status": false,
"error": {
"code": 3001,
"message": "Entity not found"
}
}