Skip to content

Instantly share code, notes, and snippets.

@thoonly
Last active December 18, 2024 09:24
Show Gist options
  • Select an option

  • Save thoonly/37b39f4d4e731d2e5f41b91d987cd9cd to your computer and use it in GitHub Desktop.

Select an option

Save thoonly/37b39f4d4e731d2e5f41b91d987cd9cd to your computer and use it in GitHub Desktop.
{
"openapi": "3.0.1",
"info": { "title": "AIS-Roaming", "description": "", "version": "1.0.0" },
"tags": [
{ "name": "File" },
{ "name": "CronJob" },
{ "name": "Format" },
{ "name": "Log" },
{ "name": "Packages" },
{ "name": "User" }
],
"paths": {
"/files/upload": {
"post": {
"summary": "Upload raw sheet",
"deprecated": false,
"description": "used for upload file excel to temp folder",
"tags": ["File"],
"parameters": [],
"requestBody": {
"content": {
"multipart/form-data": {
"schema": { "type": "object", "properties": { "file": { "example": "", "type": "string", "format": "binary" } } }
}
}
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": ["message"] },
"examples": { "1": { "summary": "Success", "value": { "message": "upload successful" } } }
}
},
"headers": {}
}
},
"security": []
}
},
"/cronjob/import": {
"post": {
"summary": "Import data",
"deprecated": false,
"description": "used to run functions for saving data from an uploaded Excel file into the database.",
"tags": ["CronJob"],
"parameters": [],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "object", "properties": {} },
"examples": { "1": { "summary": "Success", "value": null } }
}
},
"headers": {}
}
},
"security": []
}
},
"/cronjob/{milliseconds}": {
"post": {
"summary": "Set time interval for cronjob import data",
"deprecated": false,
"description": "used to update time interval for cronjob to run.",
"tags": ["CronJob"],
"parameters": [
{
"name": "milliseconds",
"in": "path",
"description": "",
"required": true,
"example": 30000,
"schema": { "type": "integer" }
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": ["message"] },
"examples": {
"1": { "summary": "Success", "value": { "message": "Cron job updated run for every 60000 milliseconds" } }
}
}
},
"headers": {}
}
},
"security": []
}
},
"/formats": {
"post": {
"summary": "Create Format",
"deprecated": false,
"description": "used for create format mapping column of excel data",
"tags": ["Format"],
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"columnName": { "type": "string", "description": "excel column name" },
"defineProperty": { "type": "string", "description": "database column name" },
"sheetName": { "type": "string", "description": "excel sheet name" },
"modelName": { "type": "string", "description": "database model name" }
},
"required": ["columnName", "defineProperty", "sheetName", "modelName"]
},
"example": {
"columnName": "Insurance Url",
"defineProperty": "insurance_url",
"sheetName": "(M)Package",
"modelName": "package"
}
}
}
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"columnName": { "type": "string" },
"defineProperty": { "type": "string" },
"sheetName": { "type": "string" },
"modelName": { "type": "string" },
"_id": { "type": "string" }
},
"required": ["columnName", "defineProperty", "sheetName", "modelName", "_id"]
},
"examples": {
"1": {
"summary": "Success",
"value": {
"columnName": "Insurance Url",
"defineProperty": "insurance_url",
"sheetName": "(M)Package",
"modelName": "package",
"_id": "6760f27b9b39f0813efb20d0"
}
}
}
}
},
"headers": {}
}
},
"security": []
},
"get": {
"summary": "Get Formats",
"deprecated": false,
"description": "used for get a define column name mapping to Excel column name.",
"tags": ["Format"],
"parameters": [],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"_id": { "type": "string" },
"columnName": { "type": "string" },
"defineProperty": { "type": "string" },
"sheetName": { "type": "string" },
"modelName": { "type": "string" }
},
"required": ["_id", "columnName", "defineProperty", "sheetName", "modelName"]
}
},
"examples": {
"1": {
"summary": "Success",
"value": [
{
"_id": "670662fa77ea45af1131a044",
"columnName": "Roaming App\n(CUD)",
"defineProperty": "command",
"sheetName": "(M)Country",
"modelName": "country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a045",
"columnName": "Notice Message \n(EN)",
"defineProperty": "remark_en",
"sheetName": "(M)Country",
"modelName": "country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a046",
"columnName": "Support \n5G Coverage",
"defineProperty": "coverage_5g",
"sheetName": "(R)Table-Country",
"modelName": "package_group_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a047",
"columnName": "Package Name",
"defineProperty": "package_name",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a048",
"columnName": "Feature Sub Code\n(Prepaid)",
"defineProperty": "prepaid_feature_sub_code",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a049",
"columnName": "Allow_ntype",
"defineProperty": "allow_customer_ntype",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a04a",
"columnName": "Group Name \n(EN)",
"defineProperty": "group_name_en",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a04b",
"columnName": "Condition \n(TH)",
"defineProperty": "condition_th",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a04c",
"columnName": "Show on \nWeb",
"defineProperty": "show_on_web",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a04d",
"columnName": "ค่ารับสาย (บาท/ นาที)",
"defineProperty": "answering_calls",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a04e",
"columnName": "Support \n3G/4G Coverage",
"defineProperty": "coverage",
"sheetName": "(R)Table-Country",
"modelName": "package_group_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a04f",
"columnName": "Mobile Network",
"defineProperty": "mobile_network",
"sheetName": "(R)Table-Country",
"modelName": "package_group_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a050",
"columnName": "Commercial Name",
"defineProperty": "commercial_name",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a051",
"columnName": "Tags",
"defineProperty": "tags",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a052",
"columnName": "PMN Code",
"defineProperty": "pmn_code",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a053",
"columnName": "VoLTE HD service",
"defineProperty": "support_volte_hd_service",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a054",
"columnName": "ค่ารับสาย (Video Call)",
"defineProperty": "answering_video_calls",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a055",
"columnName": "Alias",
"defineProperty": "alias",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a056",
"columnName": "Country ID",
"defineProperty": "country_id",
"sheetName": "(M)Country",
"modelName": "country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a057",
"columnName": "Package \nCountry Group ID",
"defineProperty": "package_group_id",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a058",
"columnName": "Country",
"defineProperty": "country_name_en",
"sheetName": "(M)Country",
"modelName": "country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a059",
"columnName": "Popular",
"defineProperty": "popular",
"sheetName": "(M)Country",
"modelName": "country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a05a",
"columnName": "Roaming App\n(CUD)",
"defineProperty": "command",
"sheetName": "(M)Table",
"modelName": "package_group",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a05b",
"columnName": "Country Name",
"defineProperty": "country_name_en",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a05c",
"columnName": "Roaming App \n(CUD)",
"defineProperty": "command",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a05d",
"columnName": "โทรในประเทศ\n",
"defineProperty": "domestic_call_in_the_roaming_country",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a05e",
"columnName": "โทรไปประเทศอื่นๆ\n",
"defineProperty": "call_to_other_countries",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a05f",
"columnName": "เครือข่ายบนหน้าจอ\n",
"defineProperty": "mobile_network_display",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a060",
"columnName": "Website",
"defineProperty": "website",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a061",
"columnName": "โทรไปประเทศอื่นๆ (Video Call)",
"defineProperty": "video_call_to_other_countries",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a062",
"columnName": "Validity \n",
"defineProperty": "validity",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a063",
"columnName": "PHX Code\n(Prepaid)",
"defineProperty": "prepaid_phx_code",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a064",
"columnName": "Amount of data usage (MB) \n(TH)",
"defineProperty": "amount_of_data_usage_th",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a065",
"columnName": "Package ID",
"defineProperty": "package_id",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a066",
"columnName": "Promotion Code\n(Postpaid)",
"defineProperty": "postpaid_promotion_code",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a067",
"columnName": "Country ID",
"defineProperty": "country_id",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a068",
"columnName": "ค่ารับสาย\n",
"defineProperty": "answering_calls",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a069",
"columnName": "สัญญาณ\n",
"defineProperty": "signal",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a06a",
"columnName": "โทรในประเทศ (Video Call)\n",
"defineProperty": "domestic_video_call_in_the_roaming_country",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a06b",
"columnName": "VoLTE HD service",
"defineProperty": "support_volte_hd_service",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a06c",
"columnName": "ประเทศ",
"defineProperty": "country_name_th",
"sheetName": "(M)Country",
"modelName": "country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a06d",
"columnName": "ทวีป",
"defineProperty": "continent_th",
"sheetName": "(M)Country",
"modelName": "country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a06e",
"columnName": "Country Code",
"defineProperty": "country_code",
"sheetName": "(M)Country",
"modelName": "country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a06f",
"columnName": "DataRoam\n(Unit)",
"defineProperty": "internet_unit",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a070",
"columnName": "Feature Code\n(Prepaid)",
"defineProperty": "prepaid_feature_code",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a071",
"columnName": "USSD Status\n",
"defineProperty": "ussd_support",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a072",
"columnName": "Operator Name",
"defineProperty": "operator_name",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a073",
"columnName": "โทรกลับไทย (Camel)",
"defineProperty": "calling_back_to_thailand",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a074",
"columnName": "จำนวนเงินขั้นต่ำในการใช้ GPRS (บาท)",
"defineProperty": "cost_effective_calling_back_to_thailand ",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a075",
"columnName": "Call Center",
"defineProperty": "call_center",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a076",
"columnName": "Rates\ninc\n(Baht)",
"defineProperty": "price_inc_bath",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a077",
"columnName": "Promotion Code\n(Postpaid)",
"defineProperty": "postpaid_promotion_code",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a078",
"columnName": "Group Feature\n(Prepaid)",
"defineProperty": "prepaid_group_feature",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a079",
"columnName": "Feature Code\n(Prepaid)",
"defineProperty": "prepaid_feature_code",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a07a",
"columnName": "Country ID",
"defineProperty": "country_id",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a07b",
"columnName": "Package Name",
"defineProperty": "package_name",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a07c",
"columnName": "Country Code",
"defineProperty": "country_code",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a07d",
"columnName": "โทรในประเทศ (Camel)",
"defineProperty": "domestic_call_in_the_roaming_country",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a07e",
"columnName": "Handset Display",
"defineProperty": "handset_display",
"sheetName": "(R)Table-Country",
"modelName": "package_group_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a07f",
"columnName": "Roaming App\n(CUD)",
"defineProperty": "command",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a080",
"columnName": "เครือข่ายบนหน้าจอ",
"defineProperty": "mobile_network_display",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a081",
"columnName": "Voucher name \n(Prepaid)",
"defineProperty": "prepaid_voucher_name",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a082",
"columnName": "Coverage info. in Package subscription page \n(EN)",
"defineProperty": "coverage_info_in_package_subscription_page_en",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a083",
"columnName": "Zone Name\n(TH)",
"defineProperty": "zone_name_th",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a084",
"columnName": "Group Name \n(TH)",
"defineProperty": "group_name_th",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a085",
"columnName": "Operator Name",
"defineProperty": "operator_name",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a086",
"columnName": "การส่งข้อความ\n",
"defineProperty": "sending_sms",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a087",
"columnName": "โทรกลับไทย (Video Call)\n",
"defineProperty": "video_call_back_to_thailand",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a088",
"columnName": "Alias",
"defineProperty": "alias",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a089",
"columnName": "Country TH",
"defineProperty": "country_name_th",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a08a",
"columnName": "โทรในประเทศ (Video Call)",
"defineProperty": "domestic_video_call_in_the_roaming_country",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a08b",
"columnName": "Continent",
"defineProperty": "continent_en",
"sheetName": "(M)Country",
"modelName": "country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a08c",
"columnName": "Roaming Country ",
"defineProperty": "country_name_en",
"sheetName": "(R)Table-Country",
"modelName": "package_group_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a08d",
"columnName": "DataRoam",
"defineProperty": "internet",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a08e",
"columnName": "Segment",
"defineProperty": "allow_customer_segment",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a08f",
"columnName": "Data Roaming\n(คิดขั้นต่ำ (KB))\n",
"defineProperty": "minimum_data_roaming_charge",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a090",
"columnName": "การเปิดโรมมิ่ง\n",
"defineProperty": "two_way_roaming",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a091",
"columnName": "Roaming App \n(CUD)",
"defineProperty": "command",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a092",
"columnName": "PMN Code",
"defineProperty": "pmn_code",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a093",
"columnName": "Package Group",
"defineProperty": "package_group",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a094",
"columnName": "USSD Code",
"defineProperty": "dial_number",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a095",
"columnName": "Other info.\n(TH)",
"defineProperty": "other_info_th",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a096",
"columnName": "Coverage info. in Package subscription page \n(TH)",
"defineProperty": "coverage_info_in_package_subscription_page_th",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a097",
"columnName": "Type",
"defineProperty": "allow_customer_type",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a098",
"columnName": "Deep link",
"defineProperty": "deep_link",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a099",
"columnName": "โทรไปประเทศอื่นๆ (Camel)",
"defineProperty": "call_to_other_countries",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a09a",
"columnName": "Remark (Thai)",
"defineProperty": "remark_th",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a09b",
"columnName": "Notice Message \n(TH)",
"defineProperty": "remark_th",
"sheetName": "(M)Country",
"modelName": "country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a09c",
"columnName": "Country and mobile network coverage\n(EN)",
"defineProperty": "country_and_mobile_network_coverage_en",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a09d",
"columnName": "Zone Name \n(EN)",
"defineProperty": "zone_name_en",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a09e",
"columnName": "Insurance Plan\n (EN)",
"defineProperty": "insurance_plan_en",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a09f",
"columnName": "Condition \n(EN)",
"defineProperty": "condition_en",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0a0",
"columnName": "Country",
"defineProperty": "country_name_en",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0a1",
"columnName": "Website",
"defineProperty": "website",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0a2",
"columnName": "Remark (English)",
"defineProperty": "remark_en",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0a3",
"columnName": "Roaming App\n(CUD)",
"defineProperty": "command",
"sheetName": "(R)Table-Country",
"modelName": "package_group_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0a4",
"columnName": "Rates\nexc.\n (Baht)",
"defineProperty": "price_exc_bath",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0a5",
"columnName": "Country TH",
"defineProperty": "country_name_th",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0a6",
"columnName": "Data Roaming\n(บาท/ KB)\n",
"defineProperty": "data_roaming",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0a7",
"columnName": "โทรไปยังปลายทาง Satellite (Camel)",
"defineProperty": "call_to_satellite",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0a8",
"columnName": "Country ID",
"defineProperty": "country_id",
"sheetName": "(R)Table-Country",
"modelName": "package_group_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0a9",
"columnName": "PMN code\nห้ามแสดงผล ไว้อ้างอิงการทำงาน",
"defineProperty": "pmn_code",
"sheetName": "(R)Table-Country",
"modelName": "package_group_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0aa",
"columnName": "Outgoing call allowance (Minute)",
"defineProperty": "outgoing_call_allowance",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0ab",
"columnName": "Send SMS allowance \n(Message)",
"defineProperty": "send_sms_allowance",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0ac",
"columnName": "Amount of data usage (MB) \n(EN)",
"defineProperty": "amount_of_data_usage_en",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0ad",
"columnName": "Country and mobile network coverage \n(TH)",
"defineProperty": "country_and_mobile_network_coverage_th",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0ae",
"columnName": "Other info.\n(EN)",
"defineProperty": "other_info_en",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0af",
"columnName": "Expired Time \n(EN)",
"defineProperty": "expired_time_en",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0b0",
"columnName": "Order by",
"defineProperty": "order_by",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0b1",
"columnName": "โทรกลับไทยแบบประหยัด\n",
"defineProperty": "cost_effective_calling_back_to_thailand",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0b2",
"columnName": "Remark (Thai)",
"defineProperty": "remark_th",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0b3",
"columnName": "โทรไปประเทศอื่นๆ (Video Call)\n",
"defineProperty": "video_call_to_other_countries",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0b4",
"columnName": "การส่งข้อความ",
"defineProperty": "sending_sms",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0b5",
"columnName": "Package \nGroup ID",
"defineProperty": "package_group_id",
"sheetName": "(M)Table",
"modelName": "package_group",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0b6",
"columnName": "Roaming Country Selectd",
"defineProperty": "country_name_th",
"sheetName": "(R)Table-Country",
"modelName": "package_group_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0b7",
"columnName": "Package ID",
"defineProperty": "package_id",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0b8",
"columnName": "Validity \n(Unit)",
"defineProperty": "validity_unit",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0b9",
"columnName": "Expired Time \n(TH)",
"defineProperty": "expired_time_th",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0ba",
"columnName": "Roaming App \n(CUD)",
"defineProperty": "command",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0bb",
"columnName": "โทรกลับไทย\n",
"defineProperty": "calling_back_to_thailand",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0bc",
"columnName": "Call Center",
"defineProperty": "call_center",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0bd",
"columnName": "Country",
"defineProperty": "country_name_en",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0be",
"columnName": "โทรกลับไทย (Video Call)",
"defineProperty": "video_call_back_to_thailand",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0bf",
"columnName": "Package \nGroup Name",
"defineProperty": "package_group_name",
"sheetName": "(R)Table-Country",
"modelName": "package_group_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0c0",
"columnName": "Call to Sattelite \n(บาท/ นาที)\n",
"defineProperty": "call_to_satellite",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0c1",
"columnName": " บาท/ KB",
"defineProperty": "data_roaming",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0c2",
"columnName": "คิดขั้นต่ำ (KB)",
"defineProperty": "minimum_data_roaming_charge ",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0c3",
"columnName": "สัญญาณ",
"defineProperty": "signal",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0c4",
"columnName": "การเปิดโรมมิ่ง",
"defineProperty": "two_way_roaming",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0c5",
"columnName": "Alias",
"defineProperty": "alias",
"sheetName": "(M)Country",
"modelName": "country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0c6",
"columnName": "Package \nGroup Name",
"defineProperty": "package_group_name",
"sheetName": "(M)Table",
"modelName": "package_group",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0c7",
"columnName": "Package \nCountry Group ID",
"defineProperty": "package_group_id",
"sheetName": "(R)Table-Country",
"modelName": "package_group_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0c8",
"columnName": "Insurance Plan \n(TH)",
"defineProperty": "insurance_plan_th",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0c9",
"columnName": "PHX Code\n(Prepaid)",
"defineProperty": "prepaid_phx_code",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0ca",
"columnName": "PHX Code\n(Prepaid)",
"defineProperty": "prepaid_phx_code",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0cb",
"columnName": "Show on \nApp",
"defineProperty": "show_on_app",
"sheetName": "(R)Package-Country",
"modelName": "package_country",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0cc",
"columnName": "ค่ารับสาย (Video Call)\n",
"defineProperty": "answering_video_calls",
"sheetName": "(R)Postpaid-Service Rate",
"modelName": "postpaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0cd",
"columnName": "Country ID",
"defineProperty": "country_id",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0ce",
"columnName": "Country Code",
"defineProperty": "country_code",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0cf",
"columnName": " Remark (English)",
"defineProperty": "remark_en",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0d0",
"columnName": "USSD Status",
"defineProperty": "ussd_support",
"sheetName": "(R)Prepaid-Service Rate",
"modelName": "prepaid_service_rate",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0d1",
"columnName": "DataRoam\n(Text)",
"defineProperty": "benefit_text",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
},
{
"_id": "670662fa77ea45af1131a0d2",
"columnName": "Insurance Url",
"defineProperty": "insurance_url",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
}
]
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/formats/{id}": {
"patch": {
"summary": "Update Format",
"deprecated": false,
"description": "for update format mapping column of excel data",
"tags": ["Format"],
"parameters": [
{
"name": "id",
"in": "path",
"description": "_id from format response data",
"required": true,
"example": "6760f27b9b39f0813efb20d0",
"schema": { "type": "string" }
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"columnName": { "type": "string" },
"defineProperty": { "type": "string" },
"sheetName": { "type": "string" },
"modelName": { "type": "string" }
},
"required": ["columnName", "defineProperty", "sheetName", "modelName"]
},
"example": {
"columnName": "Package \nCountry Group ID",
"defineProperty": "package_group_id",
"sheetName": "(M)Package",
"modelName": "package"
}
}
}
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"_id": { "type": "string" },
"columnName": { "type": "string" },
"defineProperty": { "type": "string" },
"sheetName": { "type": "string" },
"modelName": { "type": "string" }
}
},
"examples": {
"1": {
"summary": "Success",
"value": {
"_id": "6760f27b9b39f0813efb20d0",
"columnName": "Package \nCountry Group ID",
"defineProperty": "package_group_id",
"sheetName": "(M)Package",
"modelName": "package"
}
}
}
}
},
"headers": {}
}
},
"security": []
},
"delete": {
"summary": "Delete Format",
"deprecated": false,
"description": "used for delete format mapping column of excel data",
"tags": ["Format"],
"parameters": [
{
"name": "id",
"in": "path",
"description": "",
"required": true,
"example": "6760f27b9b39f0813efb20d0",
"schema": { "type": "string" }
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"_id": { "type": "string" },
"columnName": { "type": "string" },
"defineProperty": { "type": "string" },
"sheetName": { "type": "string" },
"modelName": { "type": "string" },
"__v": { "type": "integer" }
},
"required": ["_id", "columnName", "defineProperty", "sheetName", "modelName", "__v"]
},
"examples": {
"1": {
"summary": "Success",
"value": {
"_id": "6760f5e64a31853484f543f4",
"columnName": "Insurance Url",
"defineProperty": "insurance_url",
"sheetName": "(M)Package",
"modelName": "package",
"__v": 0
}
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/formats/models/group": {
"get": {
"summary": "Get Models And Sheet",
"deprecated": false,
"description": "used for get model data mapped to an Excel sheet.",
"tags": ["Format"],
"parameters": [],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": { "modelName": { "type": "string" }, "sheetName": { "type": "string" } }
}
},
"examples": {
"1": {
"summary": "Success",
"value": [
{ "modelName": "package", "sheetName": "(M)Package" },
{ "modelName": "prepaid_service_rate", "sheetName": "(R)Prepaid-Service Rate" },
{ "modelName": "postpaid_service_rate", "sheetName": "(R)Postpaid-Service Rate" },
{ "modelName": "package_group_country", "sheetName": "(R)Table-Country" },
{ "modelName": "package_group", "sheetName": "(M)Table" },
{ "modelName": "country", "sheetName": "(M)Country" },
{ "modelName": "package_country", "sheetName": "(R)Package-Country" }
]
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/logs": {
"get": {
"summary": "Get Logs",
"deprecated": false,
"description": "used for get list all upload file excel.",
"tags": ["Log"],
"parameters": [
{
"name": "status",
"in": "query",
"description": "success | error | queue",
"required": true,
"schema": { "type": "string" }
},
{ "name": "limit", "in": "query", "description": "", "required": false, "schema": { "type": "number" } },
{ "name": "skip", "in": "query", "description": "", "required": false, "schema": { "type": "number" } }
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"_id": { "type": "string" },
"originalFilename": { "type": "string" },
"path": { "type": "string" },
"status": { "type": "string" },
"createdAt": { "type": "string" },
"updatedAt": { "type": "string" }
},
"required": ["_id", "originalFilename", "path", "status", "createdAt", "updatedAt"]
}
},
"examples": {
"1": {
"summary": "Success",
"value": [
{
"_id": "6715c00770f21adb3856c496",
"originalFilename": "ir_file_21oct.xlsx",
"path": "upload/1729478663291-ir_file_21oct.xlsx",
"status": "success",
"createdAt": "2024-10-21T02:44:23.312Z",
"updatedAt": "2024-10-21T02:44:41.618Z"
},
{
"_id": "67123e7b97c4dcf7cbf67846",
"originalFilename": "ir_file_18oct 1 (1).xlsx",
"path": "upload/1729248891967-ir_file_18oct 1 (1).xlsx",
"status": "success",
"createdAt": "2024-10-18T10:54:52.009Z",
"updatedAt": "2024-10-18T10:55:06.731Z"
},
{
"_id": "67121d3cb2adac3c3658fde1",
"originalFilename": "ir_file_18oct 1.xlsx",
"path": "upload/1729240380451-ir_file_18oct 1.xlsx",
"status": "success",
"createdAt": "2024-10-18T08:33:00.510Z",
"updatedAt": "2024-10-17T08:33:15.127Z"
},
{
"_id": "67120a5eb2adac3c3658eaac",
"originalFilename": "ir_file_18oct 1.xlsx",
"path": "upload/1729235550352-ir_file_18oct 1.xlsx",
"status": "error",
"createdAt": "2024-10-18T07:12:30.390Z",
"updatedAt": "2024-10-18T09:32:54.752Z"
},
{
"_id": "6712057b5a3e17fcefeca034",
"originalFilename": "ir_file_18oct 1.xlsx",
"path": "upload/1729234299369-ir_file_18oct 1.xlsx",
"status": "error",
"createdAt": "2024-10-18T06:51:39.397Z",
"updatedAt": "2024-10-18T09:32:54.752Z"
},
{
"_id": "6710c667aeeeb1fddd0cc47b",
"originalFilename": "ir_file (3).xlsx",
"path": "upload/1729152615923-ir_file (3).xlsx",
"status": "success",
"createdAt": "2024-10-17T08:10:15.966Z",
"updatedAt": "2024-10-17T08:10:35.011Z"
},
{
"_id": "670f4f4bd5288f5d397d26d6",
"originalFilename": "ir_file (2).xlsx",
"path": "upload/1729056587854-ir_file (2).xlsx",
"status": "success",
"createdAt": "2024-10-16T05:29:47.907Z",
"updatedAt": "2024-10-16T05:30:00.107Z"
}
]
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/ir/country": {
"post": {
"summary": "Get package country",
"deprecated": false,
"description": "used to get list all support country",
"tags": ["Packages"],
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"order_by": { "type": "string", "description": "if not specific then use popular index by default" }
}
},
"example": { "order_by": "popular" }
}
}
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"country_th": { "type": "string", "description": "for Thai language" },
"country_en": { "type": "string" },
"country_url": { "type": "string", "description": "use for display permalink" }
}
}
},
"examples": {
"1": {
"summary": "Success",
"value": [
{ "country_th": "ญี่ปุ่น", "country_en": "Japan", "country_url": "japan" },
{ "country_th": "เกาหลีใต้", "country_en": "South Korea", "country_url": "south-korea" },
{
"country_th": "จีน (รวมทิเบต)",
"country_en": "China (including Tibet)",
"country_url": "china-including-tibet"
},
{ "country_th": "สิงคโปร์", "country_en": "Singapore", "country_url": "singapore" },
{ "country_th": "มาเลเซีย", "country_en": "Malaysia", "country_url": "malaysia" },
{
"country_th": "สหรัฐอเมริกา (รวมฮาวาย)",
"country_en": "USA (including Hawaii)",
"country_url": "usa-including-hawaii"
},
{ "country_th": "เวียดนาม", "country_en": "Vietnam", "country_url": "vietnam" },
{ "country_th": "สหราชอาณาจักร", "country_en": "UK", "country_url": "uk" },
{ "country_th": "ฝรั่งเศส", "country_en": "France", "country_url": "france" },
{ "country_th": "อัฟกานิสถาน", "country_en": "Afghanistan-test", "country_url": "afghanistantest" },
{ "country_th": "หมู่เกาะโอลันด์", "country_en": "Aland Islands", "country_url": "aland-islands" },
{ "country_th": "แอลเบเนีย", "country_en": "Albania", "country_url": "albania" },
{ "country_th": "แอลจีเรีย", "country_en": "Algeria", "country_url": "algeria" },
{ "country_th": "อเมริกันซามัว", "country_en": "American Samoa", "country_url": "american-samoa" },
{ "country_th": "อันดอร์รา", "country_en": "Andorra", "country_url": "andorra" },
{ "country_th": "แองโกลา", "country_en": "Angola", "country_url": "angola" },
{ "country_th": "แองกวิลลา", "country_en": "Anguilla", "country_url": "anguilla" },
{
"country_th": "แอนติกาและบาร์บูดา",
"country_en": "Antigua and Barbuda",
"country_url": "antigua-and-barbuda"
},
{ "country_th": "อาร์เจนตินา", "country_en": "Argentina", "country_url": "argentina" },
{ "country_th": "อาร์เมเนีย", "country_en": "Armenia", "country_url": "armenia" },
{ "country_th": "อารูบา", "country_en": "Aruba", "country_url": "aruba" },
{ "country_th": "ออสเตรเลีย", "country_en": "Australia", "country_url": "australia" },
{ "country_th": "ออสเตรีย", "country_en": "Austria", "country_url": "austria" },
{ "country_th": "อาเซอร์ไบจัน", "country_en": "Azerbaijan", "country_url": "azerbaijan" },
{ "country_th": "บาฮามาส", "country_en": "Bahamas", "country_url": "bahamas" },
{ "country_th": "บาห์เรน", "country_en": "Bahrain", "country_url": "bahrain" },
{ "country_th": "บังกลาเทศ", "country_en": "Bangladesh", "country_url": "bangladesh" },
{ "country_th": "บาร์เบโดส", "country_en": "Barbados", "country_url": "barbados" },
{ "country_th": "เบลารุส", "country_en": "Belarus", "country_url": "belarus" },
{ "country_th": "เบลเยียม", "country_en": "Belgium", "country_url": "belgium" },
{ "country_th": "เบลีซ", "country_en": "Belize", "country_url": "belize" },
{ "country_th": "สาธารณรัฐเบนิน", "country_en": "Benin", "country_url": "benin" },
{ "country_th": "เบอร์มิวดา", "country_en": "Bermuda", "country_url": "bermuda" },
{ "country_th": "ภูฏาน", "country_en": "Bhutan", "country_url": "bhutan" },
{ "country_th": "โบลิเวีย", "country_en": "Bolivia", "country_url": "bolivia" },
{ "country_th": "โบแนร์", "country_en": "Bonaire", "country_url": "bonaire" },
{
"country_th": "บอสเนียและเฮอร์เซโกวีนา",
"country_en": "Bosnia and Herzegovina",
"country_url": "bosnia-and-herzegovina"
},
{ "country_th": "บอตสวานา", "country_en": "Botswana", "country_url": "botswana" },
{ "country_th": "บราซิล", "country_en": "Brazil", "country_url": "brazil" },
{
"country_th": "หมู่เกาะบริติซเวอร์จิน",
"country_en": "British Virgin Islands",
"country_url": "british-virgin-islands"
},
{ "country_th": "บรูไน", "country_en": "Brunei", "country_url": "brunei" },
{ "country_th": "บัลแกเรีย", "country_en": "Bulgaria", "country_url": "bulgaria" },
{ "country_th": "บูร์กินาฟาโซ", "country_en": "Burkina Faso", "country_url": "burkina-faso" },
{ "country_th": "บุรุนดี", "country_en": "Burundi", "country_url": "burundi" },
{ "country_th": "กัมพูชา", "country_en": "Cambodia", "country_url": "cambodia" },
{ "country_th": "แคเมอรูน", "country_en": "Cameroon", "country_url": "cameroon" },
{ "country_th": "แคนาดา", "country_en": "Canada", "country_url": "canada" },
{ "country_th": "เคปเวิร์ด", "country_en": "Cape Verde", "country_url": "cape-verde" },
{ "country_th": "หมู่เกาะเคย์แมน", "country_en": "Cayman Islands", "country_url": "cayman-islands" },
{ "country_th": "แอฟริกากลาง", "country_en": "Central African Rep.", "country_url": "central-african-rep" },
{ "country_th": "ชาด", "country_en": "Chad", "country_url": "chad" },
{ "country_th": "ชิลี", "country_en": "Chile", "country_url": "chile" },
{ "country_th": "โคลัมเบีย", "country_en": "Colombia", "country_url": "colombia" },
{ "country_th": "โคโมรอส", "country_en": "Comoros", "country_url": "comoros" },
{
"country_th": "สาธารณรัฐประชาธิปไตยคองโก",
"country_en": "Congo (Democratic Republic of)",
"country_url": "congo-democratic-republic-of"
},
{ "country_th": "สาธารณรัฐคองโก", "country_en": "Congo Republic", "country_url": "congo-republic" },
{ "country_th": "หมู่เกาะคุก", "country_en": "Cook Islands", "country_url": "cook-islands" },
{ "country_th": "คอสตาริกา", "country_en": "Costa Rica", "country_url": "costa-rica" },
{
"country_th": "สาธารณรัฐโกตดิวัวร์ (ไอวอรีโคสต์)",
"country_en": "Cote D'Ivoire (Ivory Coast)",
"country_url": "cote-divoire-ivory-coast"
},
{ "country_th": "โครเอเชีย", "country_en": "Croatia", "country_url": "croatia" },
{ "country_th": "คิวบา", "country_en": "Cuba", "country_url": "cuba" },
{ "country_th": "คูราเซา", "country_en": "Curacao", "country_url": "curacao" },
{ "country_th": "ไซปรัส", "country_en": "Cyprus", "country_url": "cyprus" },
{ "country_th": "สาธารณรัฐเช็ก", "country_en": "Czech Republic", "country_url": "czech-republic" },
{ "country_th": "เดนมาร์ก", "country_en": "Denmark", "country_url": "denmark" },
{ "country_th": "โดมินิกา", "country_en": "Dominica", "country_url": "dominica" },
{ "country_th": "สาธารณรัฐโดมินิกัน", "country_en": "Dominican", "country_url": "dominican" },
{ "country_th": "เอกวาดอร์", "country_en": "Ecuador", "country_url": "ecuador" },
{ "country_th": "อียิปต์", "country_en": "Egypt", "country_url": "egypt" },
{ "country_th": "เอลซัลวาดอร์", "country_en": "El Salvador", "country_url": "el-salvador" },
{ "country_th": "อังกฤษ", "country_en": "England", "country_url": "england" },
{ "country_th": "อิเควทอเรียลกินี", "country_en": "Equatorial Guinea", "country_url": "equatorial-guinea" },
{ "country_th": "เอสโตเนีย", "country_en": "Estonia", "country_url": "estonia" },
{ "country_th": "เอสวาตีนี", "country_en": "Eswatini", "country_url": "eswatini" },
{ "country_th": "เอธิโอเปีย", "country_en": "Ethiopia", "country_url": "ethiopia" },
{ "country_th": "หมู่เกาะแฟโร", "country_en": "Faroe Islands", "country_url": "faroe-islands" },
{ "country_th": "ฟิจิ", "country_en": "Fiji", "country_url": "fiji" },
{ "country_th": "ฟินแลนด์", "country_en": "Finland", "country_url": "finland" },
{ "country_th": "เฟรนช์เกียนา", "country_en": "French Guiana", "country_url": "french-guiana" },
{ "country_th": "เฟรนช์โปลินีเซีย", "country_en": "French Polynesia", "country_url": "french-polynesia" },
{ "country_th": "กาบอง", "country_en": "Gabon", "country_url": "gabon" },
{ "country_th": "แกมเบีย", "country_en": "Gambia", "country_url": "gambia" },
{ "country_th": "จอร์เจีย", "country_en": "Georgia", "country_url": "georgia" },
{ "country_th": "เยอรมนี", "country_en": "Germany", "country_url": "germany" },
{ "country_th": "กานา", "country_en": "Ghana", "country_url": "ghana" },
{ "country_th": "ยิปรอลต้า", "country_en": "Gibraltar", "country_url": "gibraltar" },
{ "country_th": "กรีซ", "country_en": "Greece", "country_url": "greece" },
{ "country_th": "กรีนแลนด์", "country_en": "Greenland", "country_url": "greenland" },
{ "country_th": "เกรเนดา", "country_en": "Grenada", "country_url": "grenada" },
{ "country_th": "กวาเดอลูป", "country_en": "Guadeloupe", "country_url": "guadeloupe" },
{ "country_th": "กวม", "country_en": "Guam", "country_url": "guam" },
{ "country_th": "กัวเตมาลา", "country_en": "Guatemala", "country_url": "guatemala" },
{ "country_th": "เกิร์นซีย์", "country_en": "Guernsey", "country_url": "guernsey" },
{ "country_th": "กินี", "country_en": "Guinea", "country_url": "guinea" },
{ "country_th": "กายอานา", "country_en": "Guyana", "country_url": "guyana" },
{ "country_th": "เฮติ", "country_en": "Haiti", "country_url": "haiti" },
{ "country_th": "ฮอนดูรัส", "country_en": "Honduras", "country_url": "honduras" },
{ "country_th": "ฮ่องกง", "country_en": "Hong Kong", "country_url": "hong-kong" },
{ "country_th": "ฮังการี", "country_en": "Hungary", "country_url": "hungary" },
{ "country_th": "ไอซ์แลนด์", "country_en": "Iceland", "country_url": "iceland" },
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Aer Lingus",
"country_en": "In Flight Service - Aer Lingus",
"country_url": "in-flight-service-aer-lingus"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Aeroflot",
"country_en": "In Flight Service - Aeroflot",
"country_url": "in-flight-service-aeroflot"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Air France",
"country_en": "In Flight Service - Air France",
"country_url": "in-flight-service-air-france"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Air Italy",
"country_en": "In Flight Service - Air Italy",
"country_url": "in-flight-service-air-italy"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Air Serbia",
"country_en": "In Flight Service - Air Serbia",
"country_url": "in-flight-service-air-serbia"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Alitalia",
"country_en": "In Flight Service - Alitalia",
"country_url": "in-flight-service-alitalia"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Asiana Airlines",
"country_en": "In Flight Service - Asiana Airlines",
"country_url": "in-flight-service-asiana-airlines"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Azerbaijan Airlines",
"country_en": "In Flight Service - Azerbaijan Airlines",
"country_url": "in-flight-service-azerbaijan-airlines"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Biman Bangladesh Airlines",
"country_en": "In Flight Service - Biman Bangladesh Airlines",
"country_url": "in-flight-service-biman-bangladesh-airlines"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - British Airways",
"country_en": "In Flight Service - British Airways",
"country_url": "in-flight-service-british-airways"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Cathay Pacific",
"country_en": "In Flight Service - Cathay Pacific",
"country_url": "in-flight-service-cathay-pacific"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - EVA Air",
"country_en": "In Flight Service - EVA Air",
"country_url": "in-flight-service-eva-air"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - EgyptAir",
"country_en": "In Flight Service - EgyptAir",
"country_url": "in-flight-service-egyptair"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Emirates",
"country_en": "In Flight Service - Emirates",
"country_url": "in-flight-service-emirates"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Etihad",
"country_en": "In Flight Service - Etihad",
"country_url": "in-flight-service-etihad"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Eurowings",
"country_en": "In Flight Service - Eurowings",
"country_url": "in-flight-service-eurowings"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Iberia",
"country_en": "In Flight Service - Iberia",
"country_url": "in-flight-service-iberia"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - KLM Airlines",
"country_en": "In Flight Service - KLM Airlines",
"country_url": "in-flight-service-klm-airlines"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Kuwait Airways",
"country_en": "In Flight Service - Kuwait Airways",
"country_url": "in-flight-service-kuwait-airways"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Libyan airlines",
"country_en": "In Flight Service - Libyan airlines",
"country_url": "in-flight-service-libyan-airlines"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Lufthansa",
"country_en": "In Flight Service - Lufthansa",
"country_url": "in-flight-service-lufthansa"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Malaysia Airlines",
"country_en": "In Flight Service - Malaysia Airlines",
"country_url": "in-flight-service-malaysia-airlines"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Malindo Air",
"country_en": "In Flight Service - Malindo Air",
"country_url": "in-flight-service-malindo-air"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Oman Air",
"country_en": "In Flight Service - Oman Air",
"country_url": "in-flight-service-oman-air"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Philippine Airlines",
"country_en": "In Flight Service - Philippine Airlines",
"country_url": "in-flight-service-philippine-airlines"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Qatar Airways",
"country_en": "In Flight Service - Qatar Airways",
"country_url": "in-flight-service-qatar-airways"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Royal Air Maroc",
"country_en": "In Flight Service - Royal Air Maroc",
"country_url": "in-flight-service-royal-air-maroc"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Royal Jordanian",
"country_en": "In Flight Service - Royal Jordanian",
"country_url": "in-flight-service-royal-jordanian"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - SAS Scandinavian Airlines",
"country_en": "In Flight Service - SAS Scandinavian Airlines",
"country_url": "in-flight-service-sas-scandinavian-airlines"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - SWISS",
"country_en": "In Flight Service - SWISS",
"country_url": "in-flight-service-swiss"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Saudia",
"country_en": "In Flight Service - Saudia",
"country_url": "in-flight-service-saudia"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Singapore Airlines",
"country_en": "In Flight Service - Singapore Airlines",
"country_url": "in-flight-service-singapore-airlines"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Sri Lankan",
"country_en": "In Flight Service - Sri Lankan",
"country_url": "in-flight-service-sri-lankan"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - TAAG",
"country_en": "In Flight Service - TAAG",
"country_url": "in-flight-service-taag"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - TAP Air Portugal",
"country_en": "In Flight Service - TAP Air Portugal",
"country_url": "in-flight-service-tap-air-portugal"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Thai Airways",
"country_en": "In Flight Service - Thai Airways",
"country_url": "in-flight-service-thai-airways"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Turkish Airlines",
"country_en": "In Flight Service - Turkish Airlines",
"country_url": "in-flight-service-turkish-airlines"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Uzbekistan Airways",
"country_en": "In Flight Service - Uzbekistan Airways",
"country_url": "in-flight-service-uzbekistan-airways"
},
{
"country_th": "ใช้บนเครื่องบิน สายการบิน - Virgin Atlantic",
"country_en": "In Flight Service - Virgin Atlantic",
"country_url": "in-flight-service-virgin-atlantic"
},
{ "country_th": "อินเดีย", "country_en": "India", "country_url": "india" },
{ "country_th": "อินโดนีเซีย", "country_en": "Indonesia", "country_url": "indonesia" },
{ "country_th": "อิหร่าน", "country_en": "Iran", "country_url": "iran" },
{ "country_th": "อิรัก", "country_en": "Iraq", "country_url": "iraq" },
{ "country_th": "ไอร์แลนด์", "country_en": "Ireland", "country_url": "ireland" },
{ "country_th": "เกาะแมน", "country_en": "Isle of Man", "country_url": "isle-of-man" },
{ "country_th": "อิสราเอล", "country_en": "Israel", "country_url": "israel" },
{ "country_th": "อิตาลี", "country_en": "Italy", "country_url": "italy" },
{ "country_th": "จาเมกา", "country_en": "Jamaica", "country_url": "jamaica" },
{ "country_th": "เจอร์ซีย์", "country_en": "Jersey", "country_url": "jersey" },
{ "country_th": "จอร์แดน", "country_en": "Jordan", "country_url": "jordan" },
{ "country_th": "คาซัคสถาน", "country_en": "Kazakhstan", "country_url": "kazakhstan" },
{ "country_th": "เคนยา", "country_en": "Kenya", "country_url": "kenya" },
{ "country_th": "คิริบาส", "country_en": "Kiribati", "country_url": "kiribati" },
{ "country_th": "สาธารณรัฐคอซอวอ", "country_en": "Kosovo", "country_url": "kosovo" },
{ "country_th": "คูเวต", "country_en": "Kuwait", "country_url": "kuwait" },
{ "country_th": "คีร์กิซสถาน", "country_en": "Kyrgyzstan", "country_url": "kyrgyzstan" },
{ "country_th": "ลาว", "country_en": "Laos", "country_url": "laos" },
{ "country_th": "ลัตเวีย", "country_en": "Latvia", "country_url": "latvia" },
{ "country_th": "เลบานอน", "country_en": "Lebanon", "country_url": "lebanon" },
{ "country_th": "เลโซโท", "country_en": "Lesotho", "country_url": "lesotho" },
{ "country_th": "ไลบีเรีย", "country_en": "Liberia", "country_url": "liberia" },
{ "country_th": "ลิกเตนสไตน์", "country_en": "Liechtenstein", "country_url": "liechtenstein" },
{ "country_th": "ลิทัวเนีย", "country_en": "Lithuania", "country_url": "lithuania" },
{ "country_th": "ลักเซมเบิร์ก", "country_en": "Luxembourg", "country_url": "luxembourg" },
{ "country_th": "มาเก๊า", "country_en": "Macau", "country_url": "macau" },
{
"country_th": "สาธารณรัฐมาซิโดเนีย",
"country_en": "Macedonia (Republic of North Macedonia)",
"country_url": "macedonia-republic-of-north-macedonia"
},
{ "country_th": "มาดากัสการ์", "country_en": "Madagascar Republic", "country_url": "madagascar-republic" },
{ "country_th": "มาลาวี", "country_en": "Malawi", "country_url": "malawi" },
{ "country_th": "มัลดีฟส์", "country_en": "Maldives", "country_url": "maldives" },
{ "country_th": "มาลี", "country_en": "Mali", "country_url": "mali" },
{ "country_th": "มอลตา", "country_en": "Malta", "country_url": "malta" },
{
"country_th": "ใช้บนเรือโดยสาร บริเวณน่านน้ำ - มหาสมุทรแอตแลนติค, มหาสมุทรแปซิฟิค, มหาสมุทรแอนตาร์กติก, ทะเลแถบยุโรป, ทะเลเมดิเตอร์เรเนียน และ ทะเลแคริบเบียน",
"country_en": "Maritime Service - Atlantic Ocean, Pacific Ocean, Antarctic Ocean, Europe, Mediterranean and Caribbean sea",
"country_url": "maritime-service-atlantic-ocean-pacific-ocean-antarctic-ocean-europe-mediterranean-and-caribbean-sea"
},
{
"country_th": "ใช้บนเรือโดยสาร บริเวณน่านน้ำ - ทะเลดำ, ทะเลแดง, มหาสมุทรแปซิฟิค, ทะเลเมดิเตอร์เรเนียน และ ทะเลแคริบเบียน",
"country_en": "Maritime Service - Black Sea, Red Sea, Pacific Ocean, Mediterranean Sea and Caribbean Sea",
"country_url": "maritime-service-black-sea-red-sea-pacific-ocean-mediterranean-sea-and-caribbean-sea"
},
{
"country_th": "ใช้บนเรือโดยสาร บริเวณน่านน้ำ - ทะเลแถบยุโรป, มหาสมุทรแอตแลนติค, มหาสมุทรแปซิฟิค, ทะเลเมดิเตอร์เรเนียน",
"country_en": "Maritime Service - Europe, Atlantic Ocean, Pacific Ocean and Mediterranean Sea",
"country_url": "maritime-service-europe-atlantic-ocean-pacific-ocean-and-mediterranean-sea"
},
{ "country_th": "มาร์ตินีก", "country_en": "Martinique", "country_url": "martinique" },
{ "country_th": "มอริเชียส", "country_en": "Mauritius", "country_url": "mauritius" },
{ "country_th": "มายอต", "country_en": "Mayotte", "country_url": "mayotte" },
{ "country_th": "เม็กซิโก", "country_en": "Mexico", "country_url": "mexico" },
{ "country_th": "ไมโครนีเซีย", "country_en": "Micronesia", "country_url": "micronesia" },
{ "country_th": "มอลโดวา", "country_en": "Moldova", "country_url": "moldova" },
{ "country_th": "โมนาโก", "country_en": "Monaco", "country_url": "monaco" },
{ "country_th": "มองโกเลีย", "country_en": "Mongolia", "country_url": "mongolia" },
{ "country_th": "มอนเตเนโกร", "country_en": "Montenegro", "country_url": "montenegro" },
{ "country_th": "มอนต์เซอร์รัต", "country_en": "Montserrat", "country_url": "montserrat" },
{ "country_th": "โมร็อกโก", "country_en": "Morocco", "country_url": "morocco" },
{ "country_th": "โมซัมบิก", "country_en": "Mozambique", "country_url": "mozambique" },
{
"country_th": "เมียนมา (พม่า) ไม่สามารถใช้งานเน็ตโรมมิ่งได้ แต่สามารถใช้โทรและ SMS ได้ปกติ",
"country_en": "Myanmar (Data roaming is unavailable, but Voice & SMS roaming are available)",
"country_url": "myanmar-data-roaming-is-unavailable-but-voice-sms-roaming-are-available"
},
{ "country_th": "นามิเบีย", "country_en": "Namibia", "country_url": "namibia" },
{ "country_th": "นาอูรู", "country_en": "Nauru", "country_url": "nauru" },
{ "country_th": "เนปาล", "country_en": "Nepal", "country_url": "nepal" },
{ "country_th": "เนเธอร์แลนด์", "country_en": "Netherlands", "country_url": "netherlands" },
{
"country_th": "เนเธอร์แลนด์แอนทิลลิส",
"country_en": "Netherlands Antilles",
"country_url": "netherlands-antilles"
},
{ "country_th": "นิวแคลิโดเนีย", "country_en": "New Caledonia", "country_url": "new-caledonia" },
{ "country_th": "นิวซีแลนด์", "country_en": "New Zealand", "country_url": "new-zealand" },
{ "country_th": "นิการากัว", "country_en": "Nicaragua", "country_url": "nicaragua" },
{ "country_th": "ไนจีเรีย", "country_en": "Nigeria", "country_url": "nigeria" },
{ "country_th": "ไซปรัสตอนเหนือ", "country_en": "Northern Cyprus", "country_url": "northern-cyprus" },
{ "country_th": "ไอร์แลนด์เหนือ", "country_en": "Northern Ireland", "country_url": "northern-ireland" },
{
"country_th": "หมู่เกาะนอร์เทิร์นมาเรียนา",
"country_en": "Northern Marina Islands",
"country_url": "northern-marina-islands"
},
{ "country_th": "นอร์เวย์", "country_en": "Norway", "country_url": "norway" },
{ "country_th": "โอมาน", "country_en": "Oman", "country_url": "oman" },
{ "country_th": "ปากีสถาน", "country_en": "Pakistan", "country_url": "pakistan" },
{ "country_th": "ปาเลา", "country_en": "Palau", "country_url": "palau" },
{ "country_th": "รัฐปาเลสไตน์", "country_en": "Palestine", "country_url": "palestine" },
{ "country_th": "ปานามา", "country_en": "Panama", "country_url": "panama" },
{ "country_th": "ปาปัวนิวกินี", "country_en": "Papua New Guinea", "country_url": "papua-new-guinea" },
{ "country_th": "ปารากวัย", "country_en": "Paraguay", "country_url": "paraguay" },
{ "country_th": "เปรู", "country_en": "Peru", "country_url": "peru" },
{ "country_th": "ฟิลิปปินส์", "country_en": "Philippines", "country_url": "philippines" },
{ "country_th": "โปแลนด์", "country_en": "Poland", "country_url": "poland" },
{ "country_th": "โปรตุเกส", "country_en": "Portugal", "country_url": "portugal" },
{ "country_th": "เปอร์โตริโก", "country_en": "Puerto Rico", "country_url": "puerto-rico" },
{ "country_th": "กาตาร์", "country_en": "Qatar", "country_url": "qatar" },
{ "country_th": "เรอูนียง", "country_en": "Reunion", "country_url": "reunion" },
{ "country_th": "โรมาเนีย", "country_en": "Romania", "country_url": "romania" },
{ "country_th": "รัสเซีย", "country_en": "Russia", "country_url": "russia" },
{ "country_th": "รวันดา", "country_en": "Rwanda", "country_url": "rwanda" },
{ "country_th": "ซาบา", "country_en": "Saba", "country_url": "saba" },
{ "country_th": "แซ็งบาร์เตเลมี", "country_en": "Saint Barthelemy", "country_url": "saint-barthelemy" },
{ "country_th": "ซานมารีโน", "country_en": "San Marino", "country_url": "san-marino" },
{ "country_th": "เซาตูเม", "country_en": "Sao Tome", "country_url": "sao-tome" },
{ "country_th": "ซาอุดีอาระเบีย", "country_en": "Saudi Arabia", "country_url": "saudi-arabia" },
{ "country_th": "สก็อตแลนด์", "country_en": "Scotland", "country_url": "scotland" },
{ "country_th": "เซเนกัล", "country_en": "Senegal", "country_url": "senegal" },
{ "country_th": "เซอร์เบีย", "country_en": "Serbia", "country_url": "serbia" },
{ "country_th": "เซเชลส์", "country_en": "Seychelles", "country_url": "seychelles" },
{ "country_th": "ซินต์เอิสตาซียึส", "country_en": "Sint Eustatius", "country_url": "sint-eustatius" },
{ "country_th": "เซนต์มาร์ติน", "country_en": "Sint Maarten", "country_url": "sint-maarten" },
{ "country_th": "สโลวัก", "country_en": "Slovak Republic", "country_url": "slovak-republic" },
{ "country_th": "สโลวีเนีย", "country_en": "Slovenia", "country_url": "slovenia" },
{ "country_th": "หมู่เกาะโซโลมอน", "country_en": "Solomon Islands", "country_url": "solomon-islands" },
{ "country_th": "แอฟริกาใต้", "country_en": "South Africa", "country_url": "south-africa" },
{ "country_th": "ซูดานใต้", "country_en": "South Sudan", "country_url": "south-sudan" },
{ "country_th": "สเปน", "country_en": "Spain", "country_url": "spain" },
{ "country_th": "ศรีลังกา", "country_en": "Sri Lanka", "country_url": "sri-lanka" },
{
"country_th": "เซนต์คิตส์และเนวิส",
"country_en": "St. Kitts and Nevis",
"country_url": "st-kitts-and-nevis"
},
{ "country_th": "เซนต์ลูเซีย", "country_en": "St. Lucia", "country_url": "st-lucia" },
{
"country_th": "เซนต์วินเซนต์และเกรนาดีนส์",
"country_en": "St. Vincent and The Grenadines",
"country_url": "st-vincent-and-the-grenadines"
},
{ "country_th": "ซูดาน", "country_en": "Sudan", "country_url": "sudan" },
{ "country_th": "ซูรินาเม", "country_en": "Suriname", "country_url": "suriname" },
{
"country_th": "สฟาลบาร์และยานไมเอน",
"country_en": "Svalbard and Jan Mayen",
"country_url": "svalbard-and-jan-mayen"
},
{ "country_th": "สวาซิแลนด์", "country_en": "Swaziland", "country_url": "swaziland" },
{ "country_th": "สวีเดน", "country_en": "Sweden", "country_url": "sweden" },
{ "country_th": "สวิตเซอร์แลนด์", "country_en": "Switzerland", "country_url": "switzerland" },
{ "country_th": "ไต้หวัน", "country_en": "Taiwan", "country_url": "taiwan" },
{ "country_th": "ทาจิกิสถาน", "country_en": "Tajikistan", "country_url": "tajikistan" },
{ "country_th": "แทนซาเนีย", "country_en": "Tanzania", "country_url": "tanzania" },
{ "country_th": "ติมอร์-เลสเต", "country_en": "Timor-Leste", "country_url": "timorleste" },
{ "country_th": "โตโก", "country_en": "Togo", "country_url": "togo" },
{ "country_th": "ตองกา", "country_en": "Tonga", "country_url": "tonga" },
{
"country_th": "ตรินิแดดและโตเบโก",
"country_en": "Trinidad and Tobago",
"country_url": "trinidad-and-tobago"
},
{ "country_th": "ตูนิเซีย", "country_en": "Tunisia", "country_url": "tunisia" },
{ "country_th": "ทูร์เคีย(ตุรกี)", "country_en": "Turkiye", "country_url": "turkiye" },
{ "country_th": "เติร์กเมนิสถาน", "country_en": "Turkmenistan", "country_url": "turkmenistan" },
{
"country_th": "หมู่เกาะเติกส์และเคคอส",
"country_en": "Turks and Caicos Islands",
"country_url": "turks-and-caicos-islands"
},
{
"country_th": "หมู่เกาะเวอร์จินของสหรัฐอเมริกา",
"country_en": "U.S. Virgin Islands",
"country_url": "us-virgin-islands"
},
{
"country_th": "สหรัฐอาหรับอิมิเรตส์ (รวมดูไบ)",
"country_en": "UAE (including Dubai)",
"country_url": "uae-including-dubai"
},
{ "country_th": "ยูกันดา", "country_en": "Uganda", "country_url": "uganda" },
{ "country_th": "ยูเครน", "country_en": "Ukraine", "country_url": "ukraine" },
{ "country_th": "อุรุกวัย", "country_en": "Uruguay", "country_url": "uruguay" },
{ "country_th": "อุซเบกิสถาน", "country_en": "Uzbekistan", "country_url": "uzbekistan" },
{ "country_th": "วานูอาตู", "country_en": "Vanuatu", "country_url": "vanuatu" },
{ "country_th": "วาติกัน", "country_en": "Vatican City", "country_url": "vatican-city" },
{ "country_th": "เวเนซุเอลา", "country_en": "Venezuela", "country_url": "venezuela" },
{ "country_th": "เวลส์", "country_en": "Wales", "country_url": "wales" },
{ "country_th": "ซาฮาราตะวันตก", "country_en": "Western Sahara", "country_url": "western-sahara" },
{ "country_th": "ซามัวตะวันตก", "country_en": "Western Samoa", "country_url": "western-samoa" },
{ "country_th": "เยเมน", "country_en": "Yemen", "country_url": "yemen" },
{ "country_th": "แซมเบีย", "country_en": "Zambia", "country_url": "zambia" },
{ "country_th": "ซิมบับเว", "country_en": "Zimbabwe", "country_url": "zimbabwe" }
]
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/ir/package": {
"post": {
"summary": "Get package",
"deprecated": false,
"description": "get list package by customer type and country",
"tags": ["Packages"],
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"customer_type": { "type": "string", "description": "specific package type ( prepaid or postpaid )" },
"country": { "type": "string", "description": "country of package" },
"language": { "type": "string", "description": "show in language" }
},
"required": ["customer_type", "country", "language"]
},
"example": { "customer_type": "prepaid", "country": "Japan", "language": "en" }
}
}
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"zone": { "type": "string" },
"package_name": { "type": "string" },
"commercial_name": { "type": "string" },
"insurance_plan": { "type": "string" },
"validity": { "type": "string" },
"validity_unit": { "type": "string" },
"price_inc_bath": { "type": "string" },
"price_exc_bath": { "type": "string" },
"price_unit": { "type": "string" },
"segment": { "type": "string" },
"tags": { "type": "string" },
"ussd_code": { "type": "string" },
"link_myais": { "type": "string" },
"benefits": {
"type": "object",
"properties": {
"internet": {
"type": "object",
"properties": {
"data": { "type": "string" },
"data_unit": { "type": "string" },
"text": { "type": "string" }
}
},
"voice": {
"type": "object",
"properties": {
"data": { "type": "string" },
"data_unit": { "type": "string" },
"text": { "type": "string" }
}
},
"sms": {
"type": "object",
"properties": {
"data": { "type": "string" },
"data_unit": { "type": "string" },
"text": { "type": "string" }
}
},
"coverage": {
"type": "object",
"properties": {
"all": {
"type": "object",
"properties": {
"coverage_unit": { "type": "string" },
"countries": {
"type": "integer",
"description": "show number of support country this package"
},
"countries_all": {
"type": "string",
"description": "show url for used to get package coverage "
}
}
},
"5g": {
"type": "object",
"properties": {
"coverage_unit": { "type": "string" },
"countries": { "type": "integer" },
"countries_all": { "type": "string" }
}
}
}
},
"insurance": {
"type": "object",
"properties": { "insurance_plan": { "type": "string" }, "insurance_url": { "type": "string" } }
}
}
},
"condition": { "type": "string" }
},
"required": ["package_name"]
}
},
"examples": {
"1": {
"summary": "Response",
"value": [
{
"zone": "Asia & USA",
"package_name": "Ready2Fly Ultimate",
"commercial_name": "Ready2Fly Ultimate Asia & USA",
"insurance_plan": "",
"validity": "40",
"validity_unit": "Days",
"price_inc_bath": " 4,269.30 ",
"price_exc_bath": "3990",
"price_unit": "baht",
"segment": "",
"tags": "Recommend",
"ussd_code": "*111*25#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "75", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "250", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "250", "data_unit": "sms", "text": "250" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 41,
"countries_all": "22dd726a60664b38fc6cb9645cd08b356c66ce60bb65cccac124dff9dc175c62/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 35,
"countries_all": "22dd726a60664b38fc6cb9645cd08b356c66ce60bb65cccac124dff9dc175c62/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Asia & USA",
"package_name": "Ready2Fly Ultimate",
"commercial_name": "Ready2Fly Ultimate Asia & USA",
"insurance_plan": "",
"validity": "40",
"validity_unit": "Days",
"price_inc_bath": " 4,055.30 ",
"price_exc_bath": "3790",
"price_unit": "baht",
"segment": "Serenade",
"tags": "Recommend",
"ussd_code": "*111*26#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "75", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "250", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "250", "data_unit": "sms", "text": "250" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 41,
"countries_all": "74e3f8862d1c961296431e158790eb425d6c9646ccf04f1975e19751d0608513/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 35,
"countries_all": "74e3f8862d1c961296431e158790eb425d6c9646ccf04f1975e19751d0608513/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly Ultimate",
"commercial_name": "Ready2Fly Ultimate Global",
"insurance_plan": "",
"validity": "40",
"validity_unit": "Days",
"price_inc_bath": " 6,409.30 ",
"price_exc_bath": "5990",
"price_unit": "baht",
"segment": "",
"tags": "Recommend",
"ussd_code": "*111*35#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "75", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "250", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "250", "data_unit": "sms", "text": "250" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 190,
"countries_all": "9a0950df053040295e9b99c28a460e2e84d917a394ff8629aaa7f788506a0856/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "9a0950df053040295e9b99c28a460e2e84d917a394ff8629aaa7f788506a0856/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly Ultimate",
"commercial_name": "Ready2Fly Ultimate Global",
"insurance_plan": "",
"validity": "40",
"validity_unit": "Days",
"price_inc_bath": " 6,195.30 ",
"price_exc_bath": "5790",
"price_unit": "baht",
"segment": "Serenade",
"tags": "Recommend",
"ussd_code": "*111*36#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "75", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "250", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "250", "data_unit": "sms", "text": "250" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 190,
"countries_all": "23785a1af26c1107092d86f1ba949a2a2cd0e583edcb8a5cd1d2f9ee381a1984/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "23785a1af26c1107092d86f1ba949a2a2cd0e583edcb8a5cd1d2f9ee381a1984/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Asia & USA",
"package_name": "Ready2Fly Premium",
"commercial_name": "Ready2Fly Premium Asia & USA",
"insurance_plan": "",
"validity": "20",
"validity_unit": "Days",
"price_inc_bath": " 2,129.30 ",
"price_exc_bath": "1990",
"price_unit": "baht",
"segment": "",
"tags": "Hot",
"ussd_code": "*111*45#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "30", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "100", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "100", "data_unit": "sms", "text": "100" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 39,
"countries_all": "99a5c1ec7c51a3d51f3b7433041823fef321bbb0da595b73153499c505936c55/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 33,
"countries_all": "99a5c1ec7c51a3d51f3b7433041823fef321bbb0da595b73153499c505936c55/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Asia & USA",
"package_name": "Ready2Fly Premium",
"commercial_name": "Ready2Fly Premium Asia & USA",
"insurance_plan": "",
"validity": "20",
"validity_unit": "Days",
"price_inc_bath": " 1,915.30 ",
"price_exc_bath": "1790",
"price_unit": "baht",
"segment": "Serenade",
"tags": "Hot",
"ussd_code": "*111*1790#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "30", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "100", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "100", "data_unit": "sms", "text": "100" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 39,
"countries_all": "bb0959f552ae4f8549cb50886c69edf7fed9be3b711e972475010a5c2f49a768/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 33,
"countries_all": "bb0959f552ae4f8549cb50886c69edf7fed9be3b711e972475010a5c2f49a768/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly Premium",
"commercial_name": "Ready2Fly Premium Global",
"insurance_plan": "",
"validity": "20",
"validity_unit": "Days",
"price_inc_bath": " 3,734.30 ",
"price_exc_bath": "3490",
"price_unit": "baht",
"segment": "",
"tags": "Hot",
"ussd_code": "*111*46#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "30", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "100", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "100", "data_unit": "sms", "text": "100" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 189,
"countries_all": "b1fc2e884d5269e1667bada2ff074dee05a6434e06a657553ddcb809e28ecac5/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "b1fc2e884d5269e1667bada2ff074dee05a6434e06a657553ddcb809e28ecac5/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly Premium",
"commercial_name": "Ready2Fly Premium Global",
"insurance_plan": "",
"validity": "20",
"validity_unit": "Days",
"price_inc_bath": " 3,520.30 ",
"price_exc_bath": "3290",
"price_unit": "baht",
"segment": "Serenade",
"tags": "Hot",
"ussd_code": "*111*3290#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "30", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "100", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "100", "data_unit": "sms", "text": "100" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 189,
"countries_all": "678e553aa87d6af5863d8a67356f6b3e695c05e214c769376badefc75adbdadb/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "678e553aa87d6af5863d8a67356f6b3e695c05e214c769376badefc75adbdadb/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Asia & Australia",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Asia Australia",
"insurance_plan": "",
"validity": "10",
"validity_unit": "Days",
"price_inc_bath": " 459.03 ",
"price_exc_bath": "429",
"price_unit": "baht",
"segment": "",
"tags": "Popular",
"ussd_code": "*111*429#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "8", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 32,
"countries_all": "fe72f150173d607dd9f63a985571f5e9c9b8867349d3607a68e573c2c6e55e9d/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 27,
"countries_all": "fe72f150173d607dd9f63a985571f5e9c9b8867349d3607a68e573c2c6e55e9d/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Global",
"insurance_plan": "",
"validity": "15",
"validity_unit": "Days",
"price_inc_bath": " 1,015.43 ",
"price_exc_bath": "949",
"price_unit": "baht",
"segment": "",
"tags": "Popular",
"ussd_code": "*111*949#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "8", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 166,
"countries_all": "1407657ec329d85e0d43c961e26edb33da4c64cfe865e8273c75279eb308f088/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "1407657ec329d85e0d43c961e26edb33da4c64cfe865e8273c75279eb308f088/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Asia & Australia",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Asia Australia",
"insurance_plan": "",
"validity": "3",
"validity_unit": "Days",
"price_inc_bath": " 212.93 ",
"price_exc_bath": "199",
"price_unit": "baht",
"segment": "",
"tags": "",
"ussd_code": "*111*199#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "3", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 32,
"countries_all": "3f80ed40fdfb2b98331579c2041b44764a628bc488d738e040e1bd3d04494a9e/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 27,
"countries_all": "3f80ed40fdfb2b98331579c2041b44764a628bc488d738e040e1bd3d04494a9e/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Global",
"insurance_plan": "",
"validity": "7",
"validity_unit": "Days",
"price_inc_bath": " 533.93 ",
"price_exc_bath": "499",
"price_unit": "baht",
"segment": "",
"tags": "",
"ussd_code": "*111*499#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "3", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 166,
"countries_all": "7927589aa3d1e3cd5baae7b811b677382f456930f729571ac224ff6e78b3364d/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "7927589aa3d1e3cd5baae7b811b677382f456930f729571ac224ff6e78b3364d/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Global",
"insurance_plan": "",
"validity": "30",
"validity_unit": "Days",
"price_inc_bath": " 1,710.93 ",
"price_exc_bath": "1599",
"price_unit": "baht",
"segment": "",
"tags": "",
"ussd_code": "*111*1599#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "15", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 166,
"countries_all": "b7a6d1fc836d9ae89c60f248d86412826518e59b5811f50fa57270c4f374230e/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "b7a6d1fc836d9ae89c60f248d86412826518e59b5811f50fa57270c4f374230e/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Asia & Australia",
"package_name": "Ready2Fly Premium",
"commercial_name": "Ready2Fly Premium Asia Australia",
"insurance_plan": "",
"validity": "10",
"validity_unit": "Days",
"price_inc_bath": " 1,059.30 ",
"price_exc_bath": "990",
"price_unit": "baht",
"segment": "",
"tags": "",
"ussd_code": "*111*41#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "7", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "40", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "10", "data_unit": "sms", "text": "10" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 33,
"countries_all": "d4b2530e0c058c659e0c53414ea9b2503cdd8ae29c378022bbac2682a3b05228/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 27,
"countries_all": "d4b2530e0c058c659e0c53414ea9b2503cdd8ae29c378022bbac2682a3b05228/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly Premium",
"commercial_name": "Ready2Fly Premium Global",
"insurance_plan": "",
"validity": "15",
"validity_unit": "Days",
"price_inc_bath": " 1,808.30 ",
"price_exc_bath": "1690",
"price_unit": "baht",
"segment": "",
"tags": "",
"ussd_code": "*111*51#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "7", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "40", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "10", "data_unit": "sms", "text": "10" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 167,
"countries_all": "d5aaff8f0749349282a4b9e438ed4ce45ad9c2577ced157150f77ede695b95fd/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "d5aaff8f0749349282a4b9e438ed4ce45ad9c2577ced157150f77ede695b95fd/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Asia & Australia",
"package_name": "Ready2Fly Plus",
"commercial_name": "Ready2Fly Plus Asia Australia",
"insurance_plan": "Insurance plan 1",
"validity": "10",
"validity_unit": "Days",
"price_inc_bath": " 587.43 ",
"price_exc_bath": "549",
"price_unit": "baht",
"segment": "",
"tags": "",
"ussd_code": "*111*1001#",
"link_myais": "",
"benefits": {
"internet": { "data": "12", "data_unit": "GB", "text": "Non-stop data" },
"voice": { "data": "5", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 33,
"countries_all": "71e73dd35a9b9d470bbb5b543ffce84963df16be014deca6d550f42c94b7941d/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 27,
"countries_all": "71e73dd35a9b9d470bbb5b543ffce84963df16be014deca6d550f42c94b7941d/5g/en"
}
},
"insurance": {
"insurance_plan": "Insurance plan 1",
"insurance_url": "https://admin.add-digital.co.th/uploads/attachment/image/332/ceae7e2a-d4df-42f3-98bf-240df2d0d532.pdf"
}
},
"condition": "Conditions\n• For current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n• The services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n• Package service fees are as follows: (not include 7% VAT)\n• The package ready to use in specific countries “No need to select network manually”.\n• The package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n• Package pricing calculation\no AIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no AIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n• The package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n• In case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n• The customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n• The minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n• Any remaining usage in package cannot be carried forward for future use.\n• A fraction of a minute is calculated as a full minute in each call.\n• SMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n• The package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n• If you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n• In the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n• All domestic packages do not include any usage occurred in foreign countries.\n• Usage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n• Internet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n• The special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n• The company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n• The user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n• The user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Asia & Australia",
"package_name": "Ready2Fly Plus",
"commercial_name": "Ready2Fly Plus Asia Australia",
"insurance_plan": "Insurance plan 2",
"validity": "10",
"validity_unit": "Days",
"price_inc_bath": " 801.43 ",
"price_exc_bath": "749",
"price_unit": "baht",
"segment": "",
"tags": "",
"ussd_code": "*111*1002#",
"link_myais": "",
"benefits": {
"internet": { "data": "15", "data_unit": "GB", "text": "Non-stop data" },
"voice": { "data": "5", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 33,
"countries_all": "2eca8359cb35da52883e0eaad2a16fee8349a183950ae6c6dda0704f9e5f26fb/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 27,
"countries_all": "2eca8359cb35da52883e0eaad2a16fee8349a183950ae6c6dda0704f9e5f26fb/5g/en"
}
},
"insurance": {
"insurance_plan": "Insurance plan 2",
"insurance_url": "https://admin.add-digital.co.th/uploads/attachment/image/331/b08a0be0-9439-46fe-a981-9e5cdbfd8944.pdf"
}
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly Plus",
"commercial_name": "Ready2Fly Plus Global",
"insurance_plan": "Insurance plan 15 Days",
"validity": "15",
"validity_unit": "Days",
"price_inc_bath": " 1,603.93 ",
"price_exc_bath": "1499",
"price_unit": "baht",
"segment": "",
"tags": "",
"ussd_code": "*111*1126#",
"link_myais": "",
"benefits": {
"internet": { "data": "12", "data_unit": "GB", "text": "Non-stop data" },
"voice": { "data": "5", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 167,
"countries_all": "af9493de489c2769eb4b3d7e5b2ebad17a35faa5e0c4224789ad51ac248caee4/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "af9493de489c2769eb4b3d7e5b2ebad17a35faa5e0c4224789ad51ac248caee4/5g/en"
}
},
"insurance": {
"insurance_plan": "Insurance plan 15 Days",
"insurance_url": "https://www.ais.th/content/dam/ais/consumer/pdf/WW_SI-1%2C000%2C000_5.3.2024.pdf"
}
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
}
]
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/ir/coverage/{country_code}/all/{language}": {
"post": {
"summary": "Get package coverage",
"deprecated": false,
"description": "show the package coverage for a country",
"tags": ["Packages"],
"parameters": [
{ "name": "country_code", "in": "path", "description": "", "required": true, "schema": { "type": "string" } },
{
"name": "language",
"in": "path",
"description": "show in language",
"required": true,
"example": "en",
"schema": { "type": "string" }
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "array", "items": { "type": "string", "description": "country name" } },
"examples": {
"1": {
"summary": "Response",
"value": [
"Vietnam",
"Uzbekistan",
"USA (including Hawaii)",
"UAE (including Dubai)",
"U.S. Virgin Islands",
"Taiwan",
"Sri Lanka",
"South Korea",
"Singapore",
"Qatar",
"Puerto Rico",
"Philippines",
"Palestine",
"Pakistan",
"Oman",
"New Zealand",
"Nepal",
"Mongolia",
"Malaysia",
"Macau",
"Laos",
"Kuwait",
"Kazakhstan",
"Jordan",
"Japan",
"Israel",
"Indonesia",
"India",
"Hong Kong",
"Guam",
"Georgia",
"China (including Tibet)",
"Canada",
"Cambodia",
"Brunei",
"Bangladesh",
"Bahrain",
"Australia"
]
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/ir/coverage/{country_code}/5g/{language}": {
"post": {
"summary": "Get package coverage 5G",
"deprecated": false,
"description": "show the 5g package coverage for a country",
"tags": ["Packages"],
"parameters": [
{ "name": "country_code", "in": "path", "description": "", "required": true, "schema": { "type": "string" } },
{
"name": "language",
"in": "path",
"description": "",
"required": true,
"example": "en",
"schema": { "type": "string" }
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "array", "items": { "type": "string", "description": "country name" } },
"examples": {
"1": {
"summary": "Response",
"value": [
"Vietnam",
"Uzbekistan",
"USA (including Hawaii)",
"UAE (including Dubai)",
"U.S. Virgin Islands",
"Taiwan",
"Sri Lanka",
"South Korea",
"Singapore",
"Qatar",
"Puerto Rico",
"Philippines",
"Palestine",
"Pakistan",
"Oman",
"New Zealand",
"Nepal",
"Mongolia",
"Malaysia",
"Macau",
"Laos",
"Kuwait",
"Kazakhstan",
"Jordan",
"Japan",
"Israel",
"Indonesia",
"India",
"Hong Kong",
"Guam",
"Georgia",
"China (including Tibet)",
"Canada",
"Cambodia",
"Brunei",
"Bangladesh",
"Bahrain",
"Australia"
]
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/ir/rates": {
"post": {
"summary": "Get package rate",
"deprecated": false,
"description": "used to get rate detail of a package",
"tags": ["Packages"],
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": { "country": { "type": "string" }, "language": { "type": "string" } },
"required": ["country", "language"]
},
"example": { "country": "Japan", "language": "th" }
}
}
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"domestic_call_in_the_roaming_country": { "type": "string" },
"calling_back_to_thailand": { "type": "string" },
"cost_effective_calling_back_to_thailand": { "type": "string" },
"call_to_other_countries": { "type": "string" },
"answering_calls": { "type": "string" },
"sending_sms": { "type": "string" },
"data_roaming": { "type": "string" },
"notice_message": { "type": "string" },
"remark": { "type": "string" }
}
},
"examples": {
"1": {
"summary": "Response",
"value": {
"domestic_call_in_the_roaming_country": "",
"calling_back_to_thailand": "",
"cost_effective_calling_back_to_thailand": "",
"call_to_other_countries": "",
"answering_calls": "",
"sending_sms": "",
"data_roaming": "",
"notice_message": "",
"remark": ""
}
},
"2": {
"summary": "Success",
"value": {
"domestic_call_in_the_roaming_country": "25",
"calling_back_to_thailand": "49",
"call_to_other_countries": "59",
"answering_calls": "19",
"sending_sms": "9",
"data_roaming": " 0.005 ",
"notice_message": "การใช้งานโทรออก และรับสาย ที่ประเทศญี่ปุ่น คุณจะต้องมีบริการ AIS HD Voice (VoLTE) และใช้งานมือถือที่รองรับเท่านั้น (Apple iOS 15 ขึ้นไป / Samsung Android 11 ขึ้นไป) สมัครบริการ AIS HD Voice (VoLTE) ฟรีคลิก http://ais.co.th/4g/volte/package",
"remark": "หมายเหตุ • อัตราค่าบริการไม่รวม VAT 7% • การรับ SMS ขณะอยู่ต่างประเทศ ไม่เสียค่าบริการใดๆ • เศษของนาที คิดเป็น 1 นาทีต่อการโทรแต่ละครั้ง • อัตราค่าบริการข้างต้นไม่รวมการโทรไปยังหมายเลขของระบบดาวเทียม (Call to Satellite Number) • ความสามารถในการให้บริการขึ้นอยู่กับเครือข่ายผู้ร่วมให้บริการในต่างประเทศ • สำหรับประเทศอินเดียไม่รองรับการใช้งานในรัฐชัมมู และแคชเมียร์ ประกอบด้วยเมือง Katra/กาตรา, Srinagar/ศรีนคร, Gulmarg/กุลมาร์ค, Kargil/คาร์กิล, Jammu/ชัมมู, Diskit/ดิสกิต, Plan Bandipora/แพลน บานดิโพร่า, Leh/เลห์, Ladakh/ลาดักห์ • บริษัทขอสงวนสิทธิ์ในการเปลี่ยนแปลงโดยไม่ต้องแจ้งให้ทราบล่วงหน้า • หากต้องการทราบข้อมูลเพิ่มเติม กรุณาติดต่อ AIS Call Center +662 0789000 • การโทรออกและรับสาย ที่ประเทศญี่ปุ่น / ประเทศเกาหลีใต้ บนเครือข่าย LG Uplus / ประเทศสหรัฐอเมริกา บนเครือข่าย AT&T, Verizon / ประเทศจีน บนเครือข่าย China Telecom ต้องมีบริการ AIS HD Voice (VoLTE) และใช้งานมือถือที่รองรับเท่านั้น (Apple iOS V.15 และ Android V.11 ขึ้นไป)"
}
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/ir/network": {
"post": {
"summary": "Get package network",
"deprecated": false,
"description": "used for get detail of network for a country",
"tags": ["Packages"],
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"country": { "type": "string" },
"language": { "type": "string", "description": "if not specific default is th" }
},
"required": ["country"]
},
"example": { "country": "Japan", "language": "th" }
}
}
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"operator_name": { "type": "string" },
"mobile_network_display": { "type": "string" },
"signal": { "type": "string" },
"service_availability": {
"type": "object",
"properties": {
"voive_call": { "type": "boolean" },
"receiving_call": { "type": "boolean" },
"data_roaming": { "type": "boolean" },
"sms": { "type": "boolean" },
"hd_voice": { "type": "boolean" }
},
"required": ["voive_call", "receiving_call", "data_roaming", "sms", "hd_voice"]
}
}
}
},
"examples": {
"1": {
"summary": "Response",
"value": [
{
"operator_name": "",
"mobile_network_display": "",
"signal": "",
"service_availability": {
"voive_call": false,
"receiving_call": true,
"data_roaming": true,
"sms": true,
"hd_voice": true
}
}
]
},
"2": {
"summary": "Success",
"value": [
{
"operator_name": "KDDI",
"service_availability": {
"voice_call": false,
"receiving_call": false,
"data_roaming": false,
"sms": false,
"hd_voice": true
}
},
{
"operator_name": "NTT DOCOMO",
"service_availability": {
"voice_call": false,
"receiving_call": false,
"data_roaming": false,
"sms": false,
"hd_voice": true
}
},
{
"operator_name": "Rakuten Mobile",
"service_availability": {
"voice_call": false,
"receiving_call": false,
"data_roaming": false,
"sms": false,
"hd_voice": true
}
},
{
"operator_name": "SoftBank",
"service_availability": {
"voice_call": false,
"receiving_call": false,
"data_roaming": false,
"sms": false,
"hd_voice": true
}
}
]
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/ir/package/group/list": {
"post": {
"summary": "Get package group name",
"deprecated": false,
"description": "get package by group name",
"tags": ["Packages"],
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"language": { "type": "string", "description": "show in language, if not specific use english by default" }
}
},
"example": { "language": "en" }
}
}
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "array", "items": { "type": "string", "description": "package name" } },
"examples": {
"1": {
"summary": "Response",
"value": ["Ready2Fly", "Ready2Fly Plus", "Ready2Fly Premium", "Ready2Fly Ultimate"]
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/ir/package/group": {
"post": {
"summary": "Get package by a group name",
"deprecated": false,
"description": "get package by a group name",
"tags": ["Packages"],
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"group_name": { "type": "string", "description": "package name" },
"language": { "type": "string", "description": "show in language" }
},
"required": ["group_name", "language"]
},
"example": { "group_name": "Ready2Fly Ultimate", "language": "en" }
}
}
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"zone": { "type": "string" },
"package_name": { "type": "string" },
"commercial_name": { "type": "string" },
"insurance_plan": { "type": "string" },
"validity": { "type": "string" },
"validity_unit": { "type": "string" },
"price_inc_bath": { "type": "string" },
"price_exc_bath": { "type": "string" },
"price_unit": { "type": "string" },
"segment": { "type": "string" },
"tags": { "type": "string" },
"ussd_code": { "type": "string" },
"link_myais": { "type": "string" },
"benefits": {
"type": "object",
"properties": {
"internet": {
"type": "object",
"properties": {
"data": { "type": "string" },
"data_unit": { "type": "string" },
"text": { "type": "string" }
}
},
"voice": {
"type": "object",
"properties": {
"data": { "type": "string" },
"data_unit": { "type": "string" },
"text": { "type": "string" }
}
},
"sms": {
"type": "object",
"properties": {
"data": { "type": "string" },
"data_unit": { "type": "string" },
"text": { "type": "string" }
}
},
"coverage": {
"type": "object",
"properties": {
"all": {
"type": "object",
"properties": {
"coverage_unit": { "type": "string" },
"countries": { "type": "integer" },
"countries_all": { "type": "string" }
}
},
"5_g": {
"type": "object",
"properties": {
"coverage_unit": { "type": "string" },
"countries": { "type": "integer" },
"countries_all": { "type": "string" }
}
}
}
},
"insurance": {
"type": "object",
"properties": { "insurance_plan": { "type": "string" }, "insurance_url": { "type": "string" } }
}
}
},
"condition": { "type": "string" }
}
}
},
"examples": {
"1": {
"summary": "Success",
"value": [
{
"zone": "Myanmar-test",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Myanmar",
"insurance_plan": "",
"validity": "7",
"validity_unit": "Days",
"price_inc_bath": " 374.50 ",
"price_exc_bath": "350",
"price_unit": "baht",
"segment": "",
"ussd_code": "*111*350#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "", "data_unit": "", "text": "" },
"voice": { "data": "20", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 1,
"countries_all": "477e5a094954c69db0db562870b2e6fafd94479fcf7d88219b579357c3cf046f/all/en"
},
"5g": { "coverage_unit": "countries", "countries": "", "countries_all": "" }
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Monaco",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Monaco",
"insurance_plan": "",
"validity": "3",
"validity_unit": "Days",
"price_inc_bath": " 1,016.50 ",
"price_exc_bath": "950",
"price_unit": "baht",
"segment": "",
"ussd_code": "*111*950#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "1", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 1,
"countries_all": "6b45f8710d1328a1a43b23986e248c47943647a9cbca511ef12f7c5917b1ef31/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 1,
"countries_all": "6b45f8710d1328a1a43b23986e248c47943647a9cbca511ef12f7c5917b1ef31/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Border",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Border",
"insurance_plan": "",
"validity": "7",
"validity_unit": "Days",
"price_inc_bath": " 99.00 ",
"price_exc_bath": "92.53",
"price_unit": "baht",
"segment": "",
"ussd_code": "*111*99#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "2", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 3,
"countries_all": "a01c7feda3cc2c834d901dd66cdaf9709bab9c0aa81a4f9d4b01937ff49997c0/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 2,
"countries_all": "a01c7feda3cc2c834d901dd66cdaf9709bab9c0aa81a4f9d4b01937ff49997c0/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Asia & Australia",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Asia Australia",
"insurance_plan": "",
"validity": "10",
"validity_unit": "Days",
"price_inc_bath": " 459.03 ",
"price_exc_bath": "429",
"price_unit": "baht",
"segment": "",
"ussd_code": "*111*429#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "8", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 32,
"countries_all": "fe72f150173d607dd9f63a985571f5e9c9b8867349d3607a68e573c2c6e55e9d/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 27,
"countries_all": "fe72f150173d607dd9f63a985571f5e9c9b8867349d3607a68e573c2c6e55e9d/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Asia & Australia",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Asia Australia",
"insurance_plan": "",
"validity": "3",
"validity_unit": "Days",
"price_inc_bath": " 212.93 ",
"price_exc_bath": "199",
"price_unit": "baht",
"segment": "",
"ussd_code": "*111*199#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "3", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 32,
"countries_all": "3f80ed40fdfb2b98331579c2041b44764a628bc488d738e040e1bd3d04494a9e/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 27,
"countries_all": "3f80ed40fdfb2b98331579c2041b44764a628bc488d738e040e1bd3d04494a9e/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Global",
"insurance_plan": "",
"validity": "15",
"validity_unit": "Days",
"price_inc_bath": " 1,015.43 ",
"price_exc_bath": "949",
"price_unit": "baht",
"segment": "",
"ussd_code": "*111*949#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "8", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 166,
"countries_all": "1407657ec329d85e0d43c961e26edb33da4c64cfe865e8273c75279eb308f088/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "1407657ec329d85e0d43c961e26edb33da4c64cfe865e8273c75279eb308f088/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Global",
"insurance_plan": "",
"validity": "30",
"validity_unit": "Days",
"price_inc_bath": " 1,710.93 ",
"price_exc_bath": "1599",
"price_unit": "baht",
"segment": "",
"ussd_code": "*111*1599#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "15", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 166,
"countries_all": "b7a6d1fc836d9ae89c60f248d86412826518e59b5811f50fa57270c4f374230e/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "b7a6d1fc836d9ae89c60f248d86412826518e59b5811f50fa57270c4f374230e/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
},
{
"zone": "Global",
"package_name": "Ready2Fly",
"commercial_name": "Ready2Fly Global",
"insurance_plan": "",
"validity": "7",
"validity_unit": "Days",
"price_inc_bath": " 533.93 ",
"price_exc_bath": "499",
"price_unit": "baht",
"segment": "",
"ussd_code": "*111*499#",
"link_myais": "https://www.ais.th/consumers/package/international/roaming/rate/details",
"benefits": {
"internet": { "data": "3", "data_unit": "GB", "text": "Data (at Max speed)" },
"voice": { "data": "", "data_unit": "mins.", "text": "Call& SMS" },
"sms": { "data": "", "data_unit": "sms", "text": "" },
"coverage": {
"all": {
"coverage_unit": "countries",
"countries": 166,
"countries_all": "7927589aa3d1e3cd5baae7b811b677382f456930f729571ac224ff6e78b3364d/all/en"
},
"5g": {
"coverage_unit": "countries",
"countries": 100,
"countries_all": "7927589aa3d1e3cd5baae7b811b677382f456930f729571ac224ff6e78b3364d/5g/en"
}
},
"insurance": { "insurance_plan": "", "insurance_url": "" }
},
"condition": "Conditions\n•\tFor current prepaid and postpaid mobile phone customers wishing to apply for this promotion must have normal status and must not be in a state of temporary service suspension.\n•\tThe services are for Prepaid and Postpaid customers who have applied for the international roaming services and those who use the services for normal purposes, not for commercial purposes, or one that may affect other users.\n•\tPackage service fees are as follows: (not include 7% VAT)\n•\tThe package ready to use in specific countries “No need to select network manually”.\n•\tThe package will be activated and charged only upon your first usage in the designated countries within 60 days, based on your pre-defined start date and time. For example, if customers apply for the Ready2Fly Asia & Australia package for 399 baht for 10 days on March 1 at 10:00 a.m. (Thailand time) and start roaming in Singapore on April 28 at 1:30 p.m., the package will automatically activate on April 28 at 1:30 p.m. and end on May 8 at 1:30 p.m. (Thailand time). Once such usage starts, you will receive an SMS confirming package activation.\n•\tPackage pricing calculation\no\tAIS Postpaid Customers: The package fee will be charged during the billing cycle when data roaming is initiated abroad. If the package is not used within 60 days, AIS will automatically cancel the package without charge (except for the Ready2Fly Plus package).\no\tAIS Prepaid Customers: The package fee is charged immediately upon signing up. If the package is not used within 60 days, AIS will automatically refund the package within 15 days after the package expires (except for the Ready2Fly Plus package).\n•\tThe package duration begins from the day of activation and ends on the last day of the package, calculated per full day (+24 hours) according to Thai time.\n•\tIn case the customer applies for a package beforehand (not for one to be instantly effective), they may choose a future-date/pre-booking application where it is possible to specify the package’s effective date and time in advance via myAIS.\n•\tThe customer can use data roaming at max speed for data roaming quota in package, after data quota used up, you can continue using data roaming at 128 Kbps until the expiry of package validity is reached.\n•\tThe minutes in package for calls to Thailand, local calls in the roaming country, and incoming calls.\n•\tAny remaining usage in package cannot be carried forward for future use.\n•\tA fraction of a minute is calculated as a full minute in each call.\n•\tSMS messages in the Thai language or in both Thai and English totaling 70 characters are counted as 1 SMS message. For English language SMS messages, 160 characters are equivalent to 1 SMS message. In cases of continued messages that exceed this limit, excess messages will be charged as new SMS messages, whereby the recipient may receive said messages at the same time or separately as individual messages according to the number of messages sent, depending on the capabilities of the destination mobile phone or device. In the case of symbols or other extended characters, these will cause the calculation of characters per message to differ according to the technical limitations of the system.\n•\tThe package is not available in India for Jammu and Kashmir, including Katra, Srinagar, Gulmarg, Kargil, Jammu, Diskit, Plan Bandipora, Leh, and Ladakh.\n•\tIf you roam on LG Uplus in South Korea, NTT DOCOMO in Japan, KDDI in Japan, Rakuten Mobile in Japan, AT&T in the USA, Verizon in the USA and China Telecom, you can make and receive calls only if you have the AIS HD Voice (VoLTE) service enabled on a compatible device (Apple iOS v15 and Android v11 or later). To enable AIS HD Voice (VoLTE), you can apply for the service for free at http://ais.co.th/4g/volte/package\n•\tIn the case of usage in other countries not included in the package terms or usage over the specified package duration and time period, said usage will be calculated at the normal international roaming rate according to the country of usage.\n•\tAll domestic packages do not include any usage occurred in foreign countries.\n•\tUsage allowance does not include usage with on a ship (Maritime) or on an airplane (Inflight) or usage over satellite networks.\n•\tInternet services provided on the networks of overseas service providers are supplementary services for the sending and receipt of data using 3G / 4G /5G technology which are provided by those overseas service providers as a service for the convenience of network users and thus may be limited in certain locations and/or certain time periods. The speed of 3G / 4G /5G technology usage is dependent upon the service area, number of users, connection equipment, and device settings, which means that high-speed service may not be continuous during every usage. Additionally, the movement of network connection equipment or devices during service usage may temporarily affect data transmission and changes of technology in data transmission.\n•\tThe special privileges included in this promotion are reserved for personal communications from mobile phone to mobile phone only and are prohibited for usage in any commercial activities that are against governing laws, including the provision of any Voice over IP (VoIP services. If it appears that said services are, in fact, being used for the pursuit of business interests or commercial communication with third parties, or for internet access in such a manner as is against the law or contrary to public order and good public morals, the service provider reserves the right to suspend or cancel the service and to cancel any special privileges according to this promotion. In such cases, the service provider shall charge service fees at the normal rate according to usage amounts in each billing cycle.\n•\tThe company reserves the right to offer the conditions and details of promotion, which will be informed in advance\n•\tThe user agrees that the service provider (or the Company) is entitled to access and process personal data of the user as recorded and stored in the user’s smart card and/or any other personal information provided by the user for use as necessary for the benefit of our telecommunications business, marketing promotions and other additional services. This also allows the service provider (or the Company) to disclose, share and/or transfer user’s personal data to third parties, whether in the country or abroad, for said purposes.\n•\tThe user agrees to allow the service provider (or the Company) to offer information about sales promotions and other services that may be beneficial to the user via the user’s e-mail address or via other channels provided by the user to the service provider."
}
]
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/user/login": {
"post": {
"summary": "Login",
"deprecated": false,
"description": "",
"tags": ["User"],
"parameters": [],
"requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} } } } },
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "object", "properties": {} },
"examples": {
"1": {
"summary": "Success",
"value": {
"_id": "67077b56c304fad223952b4b",
"username": "guest",
"password": "$2a$10$TEi27fXoaWOui4moX0b/C.sFbS3E09ImsRmHBJkkqAT6wfYxwFkuW",
"createdAt": "2024-10-10T06:59:34.250Z",
"updatedAt": "2024-10-10T06:59:34.250Z",
"__v": 0
}
}
}
}
},
"headers": {}
},
"401": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": ["message"] },
"examples": { "1": { "summary": "Exception", "value": { "message": "Invalid credentials" } } }
}
},
"headers": {}
}
},
"security": []
}
},
"/user/create": {
"post": {
"summary": "Create User",
"deprecated": false,
"description": "",
"tags": ["User"],
"parameters": [],
"requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": {} } } } },
"responses": {
"201": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "object", "properties": {} },
"examples": {
"1": {
"summary": "Success",
"value": {
"username": "admin",
"password": "$2a$10$kNOOGu38DgxGwJBE5FmdR.pAdSQ8O7JzceJDWOv0itvHtH.1lwq4u",
"_id": "67078063925173c1ff1365b8",
"createdAt": "2024-10-10T07:21:07.430Z",
"updatedAt": "2024-10-10T07:21:07.430Z",
"__v": 0
}
}
}
}
},
"headers": {}
},
"400": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": ["message"] },
"examples": { "1": { "summary": "Exception", "value": { "message": "username already exist" } } }
}
},
"headers": {}
}
},
"security": []
}
},
"/user/{id}": {
"delete": {
"summary": "Delete User",
"deprecated": false,
"description": "used for remove a user ",
"tags": ["User"],
"parameters": [
{ "name": "id", "in": "path", "description": "user id", "required": true, "schema": { "type": "string" } }
],
"responses": {
"201": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "object", "properties": {} },
"examples": {
"1": {
"summary": "Success",
"value": {
"username": "admin",
"password": "$2a$10$kNOOGu38DgxGwJBE5FmdR.pAdSQ8O7JzceJDWOv0itvHtH.1lwq4u",
"_id": "67078063925173c1ff1365b8",
"createdAt": "2024-10-10T07:21:07.430Z",
"updatedAt": "2024-10-10T07:21:07.430Z",
"__v": 0
}
}
}
}
},
"headers": {}
},
"400": {
"description": "",
"content": {
"application/json": {
"schema": { "type": "object", "properties": { "message": { "type": "string" } }, "required": ["message"] },
"examples": { "1": { "summary": "Exception", "value": { "message": "username already exist" } } }
}
},
"headers": {}
},
"404": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"message": { "type": "string" },
"error": { "type": "string" },
"statusCode": { "type": "integer" }
},
"required": ["message", "error", "statusCode"]
},
"examples": {
"1": {
"summary": "Exception",
"value": {
"message": "User with ID 6707803e925173c1ff1365b4 not found",
"error": "Not Found",
"statusCode": 404
}
}
}
}
},
"headers": {}
}
},
"security": []
}
},
"/user": {
"get": {
"summary": "Get Users",
"deprecated": false,
"description": "",
"tags": ["User"],
"parameters": [],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"_id": { "type": "string" },
"username": { "type": "string" },
"createdAt": { "type": "string" },
"updatedAt": { "type": "string" }
}
}
},
"examples": {
"1": {
"summary": "Success",
"value": [
{
"_id": "67078063925173c1ff1365b8",
"username": "admin",
"createdAt": "2024-10-10T07:21:07.430Z",
"updatedAt": "2024-10-10T07:21:07.430Z",
"__v": 0
}
]
}
}
}
},
"headers": {}
}
},
"security": []
}
}
},
"components": { "schemas": {}, "securitySchemes": {} },
"servers": [{ "url": "http://localhost:3000", "description": "Develop Env" }]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment