Skip to main content
GET
/
api
/
v1
/
gift-cards
/
countries
/
{country_id}
Get Country
curl --request GET \
  --url https://api.payvessel.com/api/v1/gift-cards/countries/{country_id} \
  --header 'api-key: <api-key>' \
  --header 'api-secret: <api-key>'
{
  "status": true,
  "message": "<string>",
  "data": {
    "id": 123,
    "currency_code": "<string>",
    "name": "<string>",
    "code": "<string>",
    "fee": 123,
    "image": "<string>"
  }
}

Authorizations

api-key
string
header
required
api-secret
string
header
required

Path Parameters

country_id
integer
required

Response

Successful Response

status
boolean
required
message
string
required
data
CountrySchema · object
required