GET api/OuterGate/GetBillersByPostalAccount?postalAccount={postalAccount}&typeOfBulletin={typeOfBulletin}
Ritorna un biller in funzione del codice postale.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| postalAccount |
Conto corrente postale. |
long integer |
Required |
| typeOfBulletin | TypesOfBulletin |
None. |
Body Parameters
None.
Response Information
Resource Description
OuterBillerModelOut
OuterBillerModelOut| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Identificativo interno |
integer |
Required |
| Denomination |
Denominazione Biller |
string |
Required |
| PostalAccount |
Conto corrente postale |
long integer |
Required |
| IsActive |
Indica se il Biller è attivo |
boolean |
None. |
| CauseNoteRequested |
Indica se è richiesta una causale custom |
string |
None. |
| CustomTags |
Lista dei CustomTags richiesti dal Biller |
Collection of OuterBillerCustomTagModelOut |
None. |
| MetaTags |
Lista dei MetaTags richiesti dal Biller |
Collection of OuterBillerMetaTagModelOut |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Denomination": "sample string 2",
"PostalAccount": 3,
"IsActive": true,
"CauseNoteRequested": "sample string 5",
"CustomTags": [
{
"Id": 1,
"BillerId": 2,
"TagCharNumber": 1,
"TagName": "sample string 3",
"TagLabel": "sample string 4",
"TagType": 0,
"TypeOfBulletin": 0,
"TypeOfBulletinDesc": "MAV"
},
{
"Id": 1,
"BillerId": 2,
"TagCharNumber": 1,
"TagName": "sample string 3",
"TagLabel": "sample string 4",
"TagType": 0,
"TypeOfBulletin": 0,
"TypeOfBulletinDesc": "MAV"
}
],
"MetaTags": [
{
"Id": 1,
"BillerId": 2,
"TagLabel": "sample string 3",
"TagName": "sample string 4",
"TagType": 0,
"TypeOfBulletin": 0,
"TypeOfBulletinDesc": "MAV"
},
{
"Id": 1,
"BillerId": 2,
"TagLabel": "sample string 3",
"TagName": "sample string 4",
"TagType": 0,
"TypeOfBulletin": 0,
"TypeOfBulletinDesc": "MAV"
}
]
}
application/xml, text/xml
Sample:
<OuterBillerModelOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.Sepafin.Api.OuterModels">
<CauseNoteRequested>sample string 5</CauseNoteRequested>
<CustomTags>
<OuterBillerCustomTagModelOut>
<BillerId>2</BillerId>
<Id>1</Id>
<TagCharNumber>1</TagCharNumber>
<TagLabel>sample string 4</TagLabel>
<TagName>sample string 3</TagName>
<TagRegEx>sample string 5</TagRegEx>
<TagType>TagText</TagType>
<TypeOfBulletin>Mav</TypeOfBulletin>
</OuterBillerCustomTagModelOut>
<OuterBillerCustomTagModelOut>
<BillerId>2</BillerId>
<Id>1</Id>
<TagCharNumber>1</TagCharNumber>
<TagLabel>sample string 4</TagLabel>
<TagName>sample string 3</TagName>
<TagRegEx>sample string 5</TagRegEx>
<TagType>TagText</TagType>
<TypeOfBulletin>Mav</TypeOfBulletin>
</OuterBillerCustomTagModelOut>
</CustomTags>
<Denomination>sample string 2</Denomination>
<Id>1</Id>
<IsActive>true</IsActive>
<MetaTags>
<OuterBillerMetaTagModelOut>
<BillerId>2</BillerId>
<Id>1</Id>
<TagLabel>sample string 3</TagLabel>
<TagName>sample string 4</TagName>
<TagType>TagText</TagType>
<TypeOfBulletin>Mav</TypeOfBulletin>
</OuterBillerMetaTagModelOut>
<OuterBillerMetaTagModelOut>
<BillerId>2</BillerId>
<Id>1</Id>
<TagLabel>sample string 3</TagLabel>
<TagName>sample string 4</TagName>
<TagType>TagText</TagType>
<TypeOfBulletin>Mav</TypeOfBulletin>
</OuterBillerMetaTagModelOut>
</MetaTags>
<PostalAccount>3</PostalAccount>
</OuterBillerModelOut>