POST api/ProviderLogin
Request Information
URI Parameters
None.
Body Parameters
ProviderLoginDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ProviderId | globally unique identifier |
None. |
|
| Provider | ProviderDto |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| Host | string |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
|
| ApiKey | string |
None. |
|
| ClientSecret | string |
None. |
|
| Port | integer |
None. |
|
| EnableSsl | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "e8220b4c-3f8f-42d8-8513-e1cf0181d87e",
"ProviderId": "840893c8-f791-425d-a968-3bcdca75e723",
"Provider": {
"Id": "4c5c8df3-6853-4374-b753-2faf58f4f891",
"Name": "sample string 2",
"BaseApiEndpoint": "sample string 3"
},
"TenantId": "26fc7c5c-5591-46e6-a0a6-9444f9665265",
"Host": "sample string 4",
"Username": "sample string 5",
"Password": "sample string 6",
"ApiKey": "sample string 7",
"ClientSecret": "sample string 8",
"Port": 9,
"EnableSsl": true
}
application/xml, text/xml
Sample:
<ProviderLoginDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.DigitalSender.Models">
<ApiKey>sample string 7</ApiKey>
<ClientSecret>sample string 8</ClientSecret>
<EnableSsl>true</EnableSsl>
<Host>sample string 4</Host>
<Id>e8220b4c-3f8f-42d8-8513-e1cf0181d87e</Id>
<Password>sample string 6</Password>
<Port>9</Port>
<Provider>
<BaseApiEndpoint>sample string 3</BaseApiEndpoint>
<Id>4c5c8df3-6853-4374-b753-2faf58f4f891</Id>
<Name>sample string 2</Name>
</Provider>
<ProviderId>840893c8-f791-425d-a968-3bcdca75e723</ProviderId>
<TenantId>26fc7c5c-5591-46e6-a0a6-9444f9665265</TenantId>
<Username>sample string 5</Username>
</ProviderLoginDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.