Delete a geo of offer
HTTP method
Endpoint
DELETE
/v1/offers/{offer_id}/geo/{geo_id}
Path parameters
Parameter
Description
offer_id
The unique id for the offer.
geo_id
The unique id for the geo.
Response body parameters
Field
Type
Description
id
integer
offer_id
integer
A string that uniquely identifies this offer.
country
string
Country to be targeted
country_code
string
Country code.
city
array
This parameter has been deprecated. [Deprecated]
type
integer
An identifier included or excluded.
regions
Regions in targeted country
type
integer
An identifier included or excluded.
region_id
integer
the unique id for the region
region_name
string
the name of the region
cities
City in targeted Region
type
integer
An identifier included or excluded.
region_id
integer
the unique id for the region
city_id
integer
the unique id for the city
city_name
string
the name of the
Example request
Request DELETE https://{networkname}.api.offerslook.com/v1/offers/3147/geo/28574
Request DELETE http://{networkname}.api.offerslook.com/v1/offers/3147/geo/28574
Example response
{
"code": 0,
"message": "Success",
"data": {
"offer_geo": {
"type": 1,
"target": [
{
"country": "China",
"country_code": "CN",
"id": 541638,
"city": null,
"type": null,
"offer_id": null,
"regions": [
{
"type": 1,
"region_id": 633,
"region_name": "Anhui Sheng"
},
{
"type": 1,
"region_id": 635,
"region_name": "Beijing Shi"
},
{
"type": 1,
"region_id": 641,
"region_name": "Guangxi Zhuangzu Zizhiqu"
}
],
"cities": [
{
"type": 1,
"region_id": 633,
"city_id": 97648,
"city_name": "Anqing"
},
{
"type": 1,
"region_id": 633,
"city_id": 97649,
"city_name": "Baiyin"
},
{
"type": 1,
"region_id": 633,
"city_id": 97651,
"city_name": "Bozhou"
},
{
"type": 1,
"region_id": 633,
"city_id": 97658,
"city_name": "Diaoshi Township"
},
{
"type": 2,
"region_id": 635,
"city_id": 97739,
"city_name": "Beijing"
}
]
}
]
}
}
}
Last updated
Was this helpful?