GET IdentificationsProviders/{id}
Gets a provider by it's ID, represented as IdentificationsProviderDto.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the provider. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The provider dto.
IdentificationsProviderDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdNetwork | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| string |
None. |
||
| EmailTemplate | string |
None. |
|
| SettingExportFiles | string |
None. |
|
| IdentificationsPerFile | integer |
None. |
|
| SendDeliveryLabel | boolean |
None. |
|
| NotifyGrouped | boolean |
None. |
|
| TemplateFileName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "6026368a-3599-4689-8184-4c4267c67bda",
"IdNetwork": "58907179-b334-4d4d-aff1-0d29b353ba5b",
"Name": "sample string 3",
"Email": "sample string 4",
"EmailTemplate": "sample string 5",
"SettingExportFiles": "sample string 6",
"IdentificationsPerFile": 1,
"SendDeliveryLabel": true,
"NotifyGrouped": true,
"TemplateFileName": "sample string 9"
}
application/xml, text/xml
Sample:
<IdentificationsProviderDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model"> <Email>sample string 4</Email> <EmailTemplate>sample string 5</EmailTemplate> <Id>6026368a-3599-4689-8184-4c4267c67bda</Id> <IdNetwork>58907179-b334-4d4d-aff1-0d29b353ba5b</IdNetwork> <IdentificationsPerFile>1</IdentificationsPerFile> <Name>sample string 3</Name> <NotifyGrouped>true</NotifyGrouped> <SendDeliveryLabel>true</SendDeliveryLabel> <SettingExportFiles>sample string 6</SettingExportFiles> <TemplateFileName>sample string 9</TemplateFileName> </IdentificationsProviderDto>