GET api/OuterGate/GetAllBillerMetaTagsAvailable

Ritorna tutti i MetaTag disponibili

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of OuterBillerMetaTagModel
NameDescriptionTypeAdditional information
Id

Id Tag

integer

None.

TagLabel

Etichetta Tag

string

None.

TagName

Nome Tag

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "TagLabel": "sample string 2",
    "TagName": "sample string 3"
  },
  {
    "Id": 1,
    "TagLabel": "sample string 2",
    "TagName": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOuterBillerMetaTagModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.Sepafin.Api.OuterModels">
  <OuterBillerMetaTagModel>
    <Id>1</Id>
    <TagLabel>sample string 2</TagLabel>
    <TagName>sample string 3</TagName>
  </OuterBillerMetaTagModel>
  <OuterBillerMetaTagModel>
    <Id>1</Id>
    <TagLabel>sample string 2</TagLabel>
    <TagName>sample string 3</TagName>
  </OuterBillerMetaTagModel>
</ArrayOfOuterBillerMetaTagModel>