POST api/Token?ip={ip}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ip | string |
Required |
Body Parameters
None.
Response Information
Resource Description
IPCheckInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| countryRegion | CountryRegion |
None. |
|
| ipAddress | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"countryRegion": {
"isoCode": "sample string 1"
},
"ipAddress": "sample string 1"
}
application/xml, text/xml
Sample:
<IPCheckInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iMOE_Back_End.Controllers">
<countryRegion>
<isoCode>sample string 1</isoCode>
</countryRegion>
<ipAddress>sample string 1</ipAddress>
</IPCheckInfo>