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": "2026525d-2a25-455a-8e9a-499baad324ff",
"ProviderId": "86637d75-b72a-4904-af07-a0f79ed24217",
"Provider": {
"Id": "f3e808d2-809d-4f4a-9d28-bbf0501a691d",
"Name": "sample string 2",
"BaseApiEndpoint": "sample string 3"
},
"TenantId": "39c5fa59-e7d6-4994-aeab-2efa7421c0bf",
"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>2026525d-2a25-455a-8e9a-499baad324ff</Id>
<Password>sample string 6</Password>
<Port>9</Port>
<Provider>
<BaseApiEndpoint>sample string 3</BaseApiEndpoint>
<Id>f3e808d2-809d-4f4a-9d28-bbf0501a691d</Id>
<Name>sample string 2</Name>
</Provider>
<ProviderId>86637d75-b72a-4904-af07-a0f79ed24217</ProviderId>
<TenantId>39c5fa59-e7d6-4994-aeab-2efa7421c0bf</TenantId>
<Username>sample string 5</Username>
</ProviderLoginDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.