POST api/admin/SaveCustomerIdpApp
Request Information
URI Parameters
None.
Body Parameters
IDP_APP_DTO| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerIdPID | integer |
None. |
|
| IdPAppName | string |
None. |
|
| IdPAppClientId | string |
None. |
|
| IdPAppClientKey | string |
None. |
|
| Jwk | string |
None. |
|
| ConfigJSON | string |
None. |
|
| LoginAllowed | boolean |
None. |
|
| IdPTenantId | string |
None. |
|
| ClientKeyExpire | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerIdPID": 1,
"IdPAppName": "sample string 2",
"IdPAppClientId": "sample string 3",
"IdPAppClientKey": "sample string 4",
"Jwk": "sample string 5",
"ConfigJSON": "sample string 6",
"LoginAllowed": true,
"IdPTenantId": "sample string 8",
"ClientKeyExpire": "2026-03-29T17:22:42.3348323-04:00"
}
application/xml, text/xml
Sample:
<IDP_APP_DTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSPApi.DTO.IDP"> <ClientKeyExpire>2026-03-29T17:22:42.3348323-04:00</ClientKeyExpire> <ConfigJSON>sample string 6</ConfigJSON> <CustomerIdPID>1</CustomerIdPID> <IdPAppClientId>sample string 3</IdPAppClientId> <IdPAppClientKey>sample string 4</IdPAppClientKey> <IdPAppName>sample string 2</IdPAppName> <IdPTenantId>sample string 8</IdPTenantId> <Jwk>sample string 5</Jwk> <LoginAllowed>true</LoginAllowed> </IDP_APP_DTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |