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": "8f1f0704-040f-4d7e-9f20-69cfbe80df51",
"ProviderId": "4f38c04a-7dc3-404c-bd7d-5f5645be9950",
"Provider": {
"Id": "196504ec-c2aa-43d9-b039-c3e5cdde41b4",
"Name": "sample string 2",
"BaseApiEndpoint": "sample string 3"
},
"TenantId": "87fbb354-a351-488b-b7c1-0e660c9776b0",
"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>8f1f0704-040f-4d7e-9f20-69cfbe80df51</Id>
<Password>sample string 6</Password>
<Port>9</Port>
<Provider>
<BaseApiEndpoint>sample string 3</BaseApiEndpoint>
<Id>196504ec-c2aa-43d9-b039-c3e5cdde41b4</Id>
<Name>sample string 2</Name>
</Provider>
<ProviderId>4f38c04a-7dc3-404c-bd7d-5f5645be9950</ProviderId>
<TenantId>87fbb354-a351-488b-b7c1-0e660c9776b0</TenantId>
<Username>sample string 5</Username>
</ProviderLoginDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.