POST api/APIIntegration/ManageAccountAuthCredentials
Request Information
URI Parameters
None.
Body Parameters
ManageAuthCredentials| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
None. |
|
| AccountId | integer |
None. |
|
| Toolid | integer |
None. |
|
| IsRegenerate | boolean |
None. |
|
| RegenerateType | AuthCredentialGenerateType |
None. |
Request Formats
application/json, text/json
Sample:
{
"Title": "sample string 1",
"AccountId": 2,
"Toolid": 3,
"IsRegenerate": true,
"RegenerateType": 1
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GenericApiResponseOfIEnumerableOfGetAuthCredentialsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| message | string |
None. |
|
| status | string |
None. |
|
| errorCode | integer |
None. |
|
| payload | Collection of GetAuthCredentialsModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"message": "sample string 1",
"status": "sample string 2",
"errorCode": 3,
"payload": [
{
"Title": "sample string 1",
"AccountId": 2,
"AuthKey": "sample string 3",
"AuthToken": "sample string 4"
},
{
"Title": "sample string 1",
"AccountId": 2,
"AuthKey": "sample string 3",
"AuthToken": "sample string 4"
}
]
}