WasabiCard
English
English
  • Welcome
  • Getting Started
    • Update Log
    • Quick Start
  • Basic
    • Common API
    • Account API
    • Bank Card
      • Card Management
      • Cardholder Management
    • Notification Subscription
Powered by GitBook
On this page
  • Country/Region List
  • City List
  • Mobile Code List
  1. Basic

Common API

Country/Region List

This interface is updated very infrequently, so please localize the data before calling it.

POST /merchant/core/mcb/common/region

Request

param
Type
Required
Remark

Response

Param
Type
Required
Remark

code

String

true

Country/Region code ISO 3166-1 alpha-2

standardCode

String

true

Country/Region code ISO 3166-1 alpha-3

name

String

true

Country/Region name

Example Response

{
    "success": true,
    "code": 200,
    "msg": "Success",
    "data":
    [
        {
            "code": "AU",
            "standardCode": "AUS",
            "name": "Australia"
        },
        {
            "code": "BD",
            "standardCode": "BGD",
            "name": "Bangladesh"
        }
    ]
}

City List

This interface is updated very infrequently, so please localize the data before calling it.

POST /merchant/core/mcb/common/city

Request

param
Type
Required
Remark

Response

Param
Type
Required
Remark

code

String

true

city code

name

String

true

city name

country

String

true

Country/Region code ISO 3166-1 alpha-2

countryStandardCode

String

true

Country/Region code ISO 3166-1 alpha-3

Example Response

{
    "success": true,
    "code": 200,
    "msg": "Success",
    "data":
    [
        {
            "code": "AU_01",
            "name": "test",
            "country": "AU",
            "countryStandardCode": "AUS"
        }
    ]
}

Mobile Code List

This interface is updated very infrequently, so please localize the data before calling it.

POST /merchant/core/mcb/common/mobileAreaCode

Request

param
Type
Required
Remark

Response

Param
Type
Required
Remark

code

String

true

Mobile code. eg: +1

name

String

true

Region Name

areaCode

String

true

Region Code ISO 3166-1 alpha-2

language

String

true

Region Lanuage

enableGlobalTransfer

Boolean

true

Is Global Transfer Available

Example Response

{
    "success": true,
    "code": 200,
    "msg": "Success",
    "data":
    [
        {
            "code": "+1",
            "name": "Canada",
            "areaCode": "CA",
            "language": "en_US",
            "enableGlobalTransfer": true
        }
    ]
}

PreviousQuick StartNextAccount API

Last updated 3 months ago