GET api/OuterGateMultiPayment/GetBillerByPostalAccount?postalAccount={postalAccount}&typeBookingBulletin={typeBookingBulletin}
Ritorna un biller in funzione del codice postale.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| postalAccount |
Codice postale del Biller di cui si vuole effettuare la ricerca |
long integer |
Required |
| typeBookingBulletin |
Tipologia di pagamento della prenotazione |
TypeBookingBulletin |
None. |
Body Parameters
None.
Response Information
Resource Description
OuterBillerAdvancedModelOut| Name | Description | Type | Additional information |
|---|---|---|---|
| FiscalCodeOrVatNumberIsRequired |
Indica se, in fase di pagamento per questo Biller, bisogna passare o il codice fiscale o la Partita Iva del cliente ordinante obbligatoriamente. Se il cliente ordinate è una persona fisica allora servirà valorizzare il campo relativo al C.F. altrimenti il campo relativo alla P.Iva |
boolean |
None. |
| 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
{
"FiscalCodeOrVatNumberIsRequired": true,
"Id": 2,
"Denomination": "sample string 3",
"PostalAccount": 4,
"IsActive": true,
"CauseNoteRequested": "sample string 6",
"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
<OuterBillerAdvancedModelOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.Sepafin.Api.OuterModels">
<CauseNoteRequested>sample string 6</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 3</Denomination>
<Id>2</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>4</PostalAccount>
<FiscalCodeOrVatNumberIsRequired>true</FiscalCodeOrVatNumberIsRequired>
</OuterBillerAdvancedModelOut>