List All regions
Property | Description |
Resource URL | /customer/v1/{customer_id} /service_provisioning/regions |
Method | GET |
Body | None |
Sample Request
1 2 3 4 |
GET /customer/v1/5a393ea210d91806b7ef702c/service_provisioning/regions HEADER authorization:Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiIiLCJpYXQiOjEzMzIwNjk5MDIsImV4cCI6MTUyMTM3NDE5OSwiYXVkIjoiIiwic3ViIjoiIiwiY3VzdG9tZXJfaWQiOiI1YTM5M2VhMjEwZDkxODA2YjdlZjcwMmMifQ.u4kBXOHCP7W-Vg9oSfkFniSKbxj8t1ULMnTcCAS2ykw |
Sample Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
{ "request_id":"", "result_code":0, "result_description":"Success", "response":{ "region_list":[ { "region_id":"euwest", "description":"Western Europe", "regional_api_gateway":[ "https://apis.iotgtw.com" ], "regional_socket_gateway":{ "tcp_service":{ "assigned_service_ports":[ 1000 ], "gateways":[ "195.X.X.1”, “195.X.X.2" ] }, "udp_service":{ "assigned_service_ports":[ 1000, 1005 ], "gateways":[ "200.X.X.10", "200.X.X.20" ] } } }, { "region_id":"ukie", "description":"Western Europe UK and Ireland Region", "regional_api_gateway":[ "https://apis.iotgtw.com" ], "regional_socket_gateway":{ "tcp_service":{ "assigned_service_ports":[ ], "gateways":[ ] }, "udp_service":{ "assigned_service_ports":[ 2000 ], "gateways":[ ] } } } ] } } |
Get a specific region
Property | Description |
Resource URL | /customer/v1/{customer_id}/service_provisioning/regions/{region_id} |
Method | GET |
Body | None |
Sample Request
1 2 3 4 |
GET /customer/v1/5a393ea210d91806b7ef702c/service_provisioning/regions/ukie HEADER authorization:Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiIiLCJpYXQiOjEzMzIwNjk5MDIsImV4cCI6MTUyMTM3NDE5OSwiYXVkIjoiIiwic3ViIjoiIiwiY3VzdG9tZXJfaWQiOiI1YTM5M2VhMjEwZDkxODA2YjdlZjcwMmMifQ.u4kBXOHCP7W-Vg9oSfkFniSKbxj8t1ULMnTcCAS2ykw |
Sample Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
{ "request_id":"", "result_code":0, "result_description":"Success", "response":{ "region_list":[ { "region_id":"ukie", "description":"Western Europe UK and Ireland Region", "regional_api_gateway":[ "https://apis.iotgtw.com" ], "regional_socket_gateway":{ "tcp_service":{ "assigned_service_ports":[ ], "gateways":[ ] }, "udp_service":{ "assigned_service_ports":[ 2000 ], "gateways":[ ] } } } ] } } |