Skip to main content
GET
/
v1
/
refresh
/
{responseId}
Refresh cached sources
const options = {method: 'GET'};

fetch('https://api.example.com/v1/refresh/{responseId}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "status": "OK"
}

Path Parameters

responseId
string
required

Unique response ID (UUID v4 format, alphanumeric with hyphens/underscores, max 128 characters)

Pattern: ^[a-zA-Z0-9_-]{1,128}$

Response

Cache refreshed successfully

status
enum<string>
required

Cache refresh status

Available options:
OK
Example:

"OK"