POST api/Bills/get-dependent-biller-fields
Request Information
URI Parameters
None.
Body Parameters
DependentBillerFieldDto| Name | Description | Type | Additional information |
|---|---|---|---|
| billerId | integer |
None. |
|
| billerFieldId | integer |
None. |
|
| dataIndicators | Collection of Pair of string [key] and string [value] |
None. |
Request Formats
application/json, text/json
Sample:
{
"billerFieldId": 2,
"billerId": 1,
"dataIndicators": [
{
"key": "sample string 1",
"value": "sample string 2"
},
{
"key": "sample string 1",
"value": "sample string 2"
}
]
}
text/xml
Sample:
<DependentBillerFieldDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GTWorldApp.dto">
<billerFieldId>2</billerFieldId>
<billerId>1</billerId>
<dataIndicators xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Collections.Generic">
<d2p1:KeyValuePairOfstringstring>
<d2p1:key>sample string 1</d2p1:key>
<d2p1:value>sample string 2</d2p1:value>
</d2p1:KeyValuePairOfstringstring>
<d2p1:KeyValuePairOfstringstring>
<d2p1:key>sample string 1</d2p1:key>
<d2p1:value>sample string 2</d2p1:value>
</d2p1:KeyValuePairOfstringstring>
</dataIndicators>
</DependentBillerFieldDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |