GET api/options/{countryCode} Authentication required
Use this method to get all options available for a country
Request
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
countryCode |
Country represented by its ISO 3166-1 alpha-2 Code (2 chars long) |
string |
Required |
Response
Returns all options available for the specified country
Output : array of objects (See Model)Ouput Sample
[
{
"name": "sample string 1",
"description": "sample string 2",
"unitPrice": 3.1,
"perRecord": true,
"isRequired": true
},
{
"name": "sample string 1",
"description": "sample string 2",
"unitPrice": 3.1,
"perRecord": true,
"isRequired": true
}
]