Create Reserved Address
Create a new reserved address.Request
POST /reserved_addrsExample Request
Parameters
Name | Type | Description |
---|---|---|
description | string | human-readable description of what this reserved address will be used for |
metadata | string | arbitrary user-defined machine-readable data of this reserved address. Optional, max 4096 bytes. |
region | string | reserve the address in this geographic ngrok datacenter. Optional, default is us. (au, eu, ap, us, jp, in, sa) |
Response
Returns a 201 response on successExample Response
Fields
Name | Type | Description |
---|---|---|
id | string | unique reserved address resource identifier |
uri | string | URI of the reserved address API resource |
created_at | string | timestamp when the reserved address was created, RFC 3339 format |
description | string | human-readable description of what this reserved address will be used for |
metadata | string | arbitrary user-defined machine-readable data of this reserved address. Optional, max 4096 bytes. |
addr | string | hostname:port of the reserved address that was assigned at creation time |
region | string | reserve the address in this geographic ngrok datacenter. Optional, default is us. (au, eu, ap, us, jp, in, sa) |
Delete Reserved Address
Delete a reserved address.Request
DELETE /reserved_addrs/{id}Example Request
Response
Returns a 204 response with no body on successGet Reserved Address
Get the details of a reserved address.Request
GET /reserved_addrs/{id}Example Request
Response
Returns a 200 response on successExample Response
Fields
Name | Type | Description |
---|---|---|
id | string | unique reserved address resource identifier |
uri | string | URI of the reserved address API resource |
created_at | string | timestamp when the reserved address was created, RFC 3339 format |
description | string | human-readable description of what this reserved address will be used for |
metadata | string | arbitrary user-defined machine-readable data of this reserved address. Optional, max 4096 bytes. |
addr | string | hostname:port of the reserved address that was assigned at creation time |
region | string | reserve the address in this geographic ngrok datacenter. Optional, default is us. (au, eu, ap, us, jp, in, sa) |
List Reserved Addresses
List all reserved addresses on this account.Request
GET /reserved_addrsExample Request
Response
Returns a 200 response on successExample Response
Fields
Name | Type | Description |
---|---|---|
reserved_addrs | ReservedAddr | the list of all reserved addresses on this account |
uri | string | URI of the reserved address list API resource |
next_page_uri | string | URI of the next page, or null if there is no next page |
ReservedAddr fields
Name | Type | Description |
---|---|---|
id | string | unique reserved address resource identifier |
uri | string | URI of the reserved address API resource |
created_at | string | timestamp when the reserved address was created, RFC 3339 format |
description | string | human-readable description of what this reserved address will be used for |
metadata | string | arbitrary user-defined machine-readable data of this reserved address. Optional, max 4096 bytes. |
addr | string | hostname:port of the reserved address that was assigned at creation time |
region | string | reserve the address in this geographic ngrok datacenter. Optional, default is us. (au, eu, ap, us, jp, in, sa) |
Update Reserved Address
Update the attributes of a reserved address.Request
PATCH /reserved_addrs/{id}Example Request
Parameters
Name | Type | Description |
---|---|---|
id | string | |
description | string | human-readable description of what this reserved address will be used for |
metadata | string | arbitrary user-defined machine-readable data of this reserved address. Optional, max 4096 bytes. |
Response
Returns a 200 response on successExample Response
Fields
Name | Type | Description |
---|---|---|
id | string | unique reserved address resource identifier |
uri | string | URI of the reserved address API resource |
created_at | string | timestamp when the reserved address was created, RFC 3339 format |
description | string | human-readable description of what this reserved address will be used for |
metadata | string | arbitrary user-defined machine-readable data of this reserved address. Optional, max 4096 bytes. |
addr | string | hostname:port of the reserved address that was assigned at creation time |
region | string | reserve the address in this geographic ngrok datacenter. Optional, default is us. (au, eu, ap, us, jp, in, sa) |