- Overview
- Account Settings
- Assets
- Connectors Framework
- Customer Portal
- Customers
- Dashboards
- Devices
- Dispatching
- Forms
- Inventory
- Invoices & Billing
- Locations
- Payments
- Parts
- Projects
- Quotes
- Recurrent Routes
- Recurrent Services
- Reports
- Sales Orders
- Schedule
- Services
- Tasks
- Text Messaging
- Time Tracking
- Users
- Work Orders
Overview
Retrieve Country List defined in MobiWork
Retrieve Country List defined in MobiWork
URL Format
https://{domain}.mobiwork.com/api/rest/{clientId}/{versionNumber}/user/country/list.html?token=XXXXXXXX&userId={userId}
https://{domain}.mobiwork.com/api/rest/{clientId}/{versionNumber}/user/country/list.html?token=XXXXXXXX&userId={userId}
Arguments
clientId required |
MobiWork assigned unique ID of the company |
versionNumber required |
Version number of MobiWork API SDK release. Current version is: 10.0.78 |
token required |
Part of URL as a request parameter and is required in every call to verify access to API calls |
userId optional |
If provided, this User ID will be taken as a logged in user. If not provided we use an active global administrator ID |
Return
Returns a list of countries defined in MobiWork if valid arguments are provided. Returns an error if not a valid request
Returns a list of countries defined in MobiWork if valid arguments are provided. Returns an error if not a valid request
Curl Example
HTTP Method: | POST |
Request: | curl -k -X GET "https://www.mobiwork.com/api/rest/12014/10.0.78/user/country/list.html?token=COJL8X2FKSLMMRTYCH2B" --header 'content-type: application/xml' |
Response: |
<?xml version="1.0" encoding="UTF-8" ?> <response version="10.0.78" statusCode="1"> <countryList> <country id="122"> <name>Afghanistan</name> <locale></locale> </country> <country id="2"> <name>Albania</name> <locale>sq_AL</locale> </country> <country id="3"> <name>Algeria</name> <locale>ar_DZ</locale> </country> <country id="107"> <name>Angola</name> <locale>en_US</locale> </country> <country id="139"> <name>Anguilla</name> <locale></locale> </country> <country id="140"> <name>Antigua and Barbuda</name> <locale></locale> </country> <country id="4"> <name>Argentina</name> <locale>es_ES</locale> </country> <country id="141"> <name>Aruba</name> <locale></locale> </country> <country id="5"> <name>Australia</name> <locale>en_AU</locale> </country> <country id="6"> <name>Austria</name> <locale>de_AT</locale> </country> <country id="121"> <name>Bahamas</name> <locale>en_US</locale> </country> <country id="7"> <name>Bahrain</name> <locale>ar_BH</locale> </country> <country id="123"> <name>Bangladesh</name> <locale></locale> </country> </response> |