Skip to main content

HTTP Response Backends

Create HTTP Response Backend

Request

POST /backends/http_response

Example Request

curl \
-X POST \
-H "Authorization: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-H "Ngrok-Version: 2" \
-d '{"description":"acme http response","metadata":"{\"environment\": \"staging\"}","body":"I'm a teapot","headers":{"Content-Type":"text/plain"},"status_code":418}' \
https://api.ngrok.com/backends/http_response

Parameters

NameTypeDescription
descriptionstringhuman-readable description of this backend. Optional
metadatastringarbitrary user-defined machine-readable data of this backend. Optional
bodystringbody to return as fixed content
headersMap<string, string>headers to return
status_codeint32status code to return

Response

Returns a 201 response on success

Example Response

{
"id": "bkdhr_2bMmWiYZ7Z2DgZ2pAffOl3I58RR",
"uri": "https://api.ngrok.com/backends/http_response/bkdhr_2bMmWiYZ7Z2DgZ2pAffOl3I58RR",
"created_at": "2024-01-23T18:09:15Z",
"description": "acme http response",
"metadata": "{\"environment\": \"staging\"}",
"body": "I'm a teapot",
"headers": {
"content-type": "text/plain"
},
"status_code": 418
}

Fields

NameTypeDescription
idstring
uristringURI of the HTTPResponseBackend API resource
created_atstringtimestamp when the backend was created, RFC 3339 format
descriptionstringhuman-readable description of this backend. Optional
metadatastringarbitrary user-defined machine-readable data of this backend. Optional
bodystringbody to return as fixed content
headersMap<string, string>headers to return
status_codeint32status code to return

Delete HTTP Response Backend

Request

DELETE /backends/http_response/{id}

Example Request

curl \
-X DELETE \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/backends/http_response/bkdhr_2bMmWiYZ7Z2DgZ2pAffOl3I58RR

Response

Returns a 204 response with no body on success

Get HTTP Response Backend

Request

GET /backends/http_response/{id}

Example Request

curl \
-X GET \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/backends/http_response/bkdhr_2bMmWiYZ7Z2DgZ2pAffOl3I58RR

Response

Returns a 200 response on success

Example Response

{
"id": "bkdhr_2bMmWiYZ7Z2DgZ2pAffOl3I58RR",
"uri": "https://api.ngrok.com/backends/http_response/bkdhr_2bMmWiYZ7Z2DgZ2pAffOl3I58RR",
"created_at": "2024-01-23T18:09:15Z",
"description": "acme http response",
"metadata": "{\"environment\": \"staging\"}",
"body": "I'm a teapot",
"headers": {
"content-type": "text/plain"
},
"status_code": 418
}

Fields

NameTypeDescription
idstring
uristringURI of the HTTPResponseBackend API resource
created_atstringtimestamp when the backend was created, RFC 3339 format
descriptionstringhuman-readable description of this backend. Optional
metadatastringarbitrary user-defined machine-readable data of this backend. Optional
bodystringbody to return as fixed content
headersMap<string, string>headers to return
status_codeint32status code to return

List HTTP Response Backends

Request

GET /backends/http_response

Example Request

curl \
-X GET \
-H "Authorization: Bearer {API_KEY}" \
-H "Ngrok-Version: 2" \
https://api.ngrok.com/backends/http_response

Response

Returns a 200 response on success

Example Response

{
"backends": [
{
"id": "bkdhr_2bMmWnZj1fW4krs1JraQ2pBPsli",
"uri": "https://api.ngrok.com/backends/http_response/bkdhr_2bMmWnZj1fW4krs1JraQ2pBPsli",
"created_at": "2024-01-23T18:09:15Z",
"body": "one",
"headers": null,
"status_code": 200
},
{
"id": "bkdhr_2bMmWiYZ7Z2DgZ2pAffOl3I58RR",
"uri": "https://api.ngrok.com/backends/http_response/bkdhr_2bMmWiYZ7Z2DgZ2pAffOl3I58RR",
"created_at": "2024-01-23T18:09:15Z",
"description": "acme http response",
"metadata": "{\"environment\": \"staging\"}",
"body": "I'm a teapot",
"headers": {
"content-type": "text/plain"
},
"status_code": 418
},
{
"id": "bkdhr_2bMmVt8JTyA2seafxhjpNs81c1h",
"uri": "https://api.ngrok.com/backends/http_response/bkdhr_2bMmVt8JTyA2seafxhjpNs81c1h",
"created_at": "2024-01-23T18:09:08Z",
"body": "one",
"headers": null,
"status_code": 200
}
],
"uri": "https://api.ngrok.com/backends/http_response",
"next_page_uri": null
}

Fields

NameTypeDescription
backendsHTTPResponseBackend
uristring
next_page_uristring

HTTPResponseBackend fields

NameTypeDescription
idstring
uristringURI of the HTTPResponseBackend API resource
created_atstringtimestamp when the backend was created, RFC 3339 format
descriptionstringhuman-readable description of this backend. Optional
metadatastringarbitrary user-defined machine-readable data of this backend. Optional
bodystringbody to return as fixed content
headersMap<string, string>headers to return
status_codeint32status code to return

Update HTTP Response Backend

Request

PATCH /backends/http_response/{id}

Example Request

curl \
-X PATCH \
-H "Authorization: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-H "Ngrok-Version: 2" \
-d '{"metadata":"{\"environment\": \"production\"}"}' \
https://api.ngrok.com/backends/http_response/bkdhr_2bMmWiYZ7Z2DgZ2pAffOl3I58RR

Parameters

NameTypeDescription
idstring
descriptionstringhuman-readable description of this backend. Optional
metadatastringarbitrary user-defined machine-readable data of this backend. Optional
bodystringbody to return as fixed content
headersMap<string, string>headers to return
status_codeint32status code to return

Response

Returns a 200 response on success

Example Response

{
"id": "bkdhr_2bMmWiYZ7Z2DgZ2pAffOl3I58RR",
"uri": "https://api.ngrok.com/backends/http_response/bkdhr_2bMmWiYZ7Z2DgZ2pAffOl3I58RR",
"created_at": "2024-01-23T18:09:15Z",
"description": "acme http response",
"metadata": "{\"environment\": \"production\"}",
"body": "I'm a teapot",
"headers": {
"content-type": "text/plain"
},
"status_code": 418
}

Fields

NameTypeDescription
idstring
uristringURI of the HTTPResponseBackend API resource
created_atstringtimestamp when the backend was created, RFC 3339 format
descriptionstringhuman-readable description of this backend. Optional
metadatastringarbitrary user-defined machine-readable data of this backend. Optional
bodystringbody to return as fixed content
headersMap<string, string>headers to return
status_codeint32status code to return