List Service Access Points Available to customer account
Property | Description |
Resource URL | /customer/v1/{customer_id} /service_provisioning/serviceAccessPoints |
Method | GET |
Body | None |
Sample Request
1 2 3 |
GET /customer/v1/5a393ea210d91806b7ef702c/service_provisioning/serviceAccessPoints 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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
{ "request_id":"", "result_code":0, "result_description":"Success", "response":[ { "state":true, "type":"shared", "name":"doodle", "description":"shared sap 5000 – simplytiny v1", "region_id":"ukie", "regional_api_gateway":[ "https://ukie.iotgtw.com" ], "listening_port":5200, "listening_protocol":"udp", "listening_ip":"195.20.21.22", "log_all_access_attempts":false, "tcp_data_stream_delimiter":0, "access_authorization_mode":"" }, { "state":true, "type":"shared", "name":"faniot", "description":"shared sap 5001 – simplytiny v1", "region_id":"euwest", "regional_api_gateway":[ "https://euwest.iotgtw.com" ], "listening_port":2500, "listening_protocol":"udp", "listening_ip":"201.16.15.14", "log_all_access_attempts":false, "tcp_data_stream_delimiter":0, "access_authorization_mode":"" }, { "state":true, "type":"shared", "name":"saptcp5002", "description":"shared sap 50002 simplytiy v1", "region_id":"ukie", "regional_api_gateway":[ "https://ukie.iotgtw.com" ], "listening_port":5300, "listening_protocol":"tcp", "listening_ip":"120.60.30.15", "log_all_access_attempts":false, "tcp_data_stream_delimiter":0, "access_authorization_mode":"" }, { "state":true, "type":"private", "name":"citymotive", "description":"Customer private SAP - IoT City Automotive", "region_id":"northamerica", "regional_api_gateway":[ "https://northamerica.iotgtw.com" ], "listening_port":5300, "listening_protocol":"tcp", "listening_ip":"50.100.50.100", "log_all_access_attempts":true, "tcp_data_stream_delimiter":0, "access_authorization_mode":"" }, { "state":true, "type":"private", "name":"NBiotDock", "description":"NB-IoT Private networks services", "region_id":"euwest", "regional_api_gateway":[ "https://euwest.iotgtw.com" ], "listening_port":2500, "listening_protocol":"udp", "listening_ip":"200.100.50.25", "log_all_access_attempts":false, "tcp_data_stream_delimiter":0, "access_authorization_mode":"" } ] } |
List a specific Service Access Point available to customer account
Property | Description |
Resource URL | /customer/v1/{customer_id} /service_provisioning/ServiceAccessPoints/{sap_id} |
Method | GET |
Body | None |
Sample Request
1 2 3 |
GET /customer/v1/5a393ea210d91806b7ef702c/service_provisioning/ServiceAccessPoints/brightiot 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 |
{ "request_id":"", "result_code":0, "result_description":"Success", "response":{ "state":true, "type":"shared", "name":"brightiot", "description":"shared sap 5001 – simplytiny v1", "region_id":"euwest", "regional_api_gateway":[ "https://euwest.iotgtw.com" ], "listening_port":2500, "listening_protocol":"udp", "listening_ip":"201.16.15.14", "log_all_access_attempts":false, "tcp_data_stream_delimiter":0, "access_authorization_mode":"" } } |