Introduction
This documentation aims to provide all the information you need to work with our API.
<aside>As you scroll, you'll see code examples for working with the API in different programming languages in the dark area to the right (or as part of the content on mobile).
You can switch the language used with the tabs at the top right (or from the nav menu at the top left on mobile).</aside>
Authenticating requests
To authenticate requests, include an Authorization header with the value "Bearer {YOUR_AUTH_KEY}".
All authenticated endpoints are marked with a requires authentication badge in the documentation below.
You can retrieve your token by visiting your dashboard and clicking Generate API token.
Endpoints
Handles the API request and renders the Swagger documentation view.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documentation" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documentation"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>L5 Swagger UI</title>
<link rel="stylesheet" type="text/css" href="http://gryphon-central-stage.gryphon-tenant-api.test:3002/docs/asset/swagger-ui.css?v=4758762786ee309249dce960484fc1f4">
<link rel="icon" type="image/png" href="http://gryphon-central-stage.gryphon-tenant-api.test:3002/docs/asset/favicon-32x32.png?v=40d4f2c38d1cd854ad463f16373cbcb6" sizes="32x32"/>
<link rel="icon" type="image/png" href="http://gryphon-central-stage.gryphon-tenant-api.test:3002/docs/asset/favicon-16x16.png?v=f0ae831196d55d8f4115b6c5e8ec5384" sizes="16x16"/>
<style>
html
{
box-sizing: border-box;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
*,
*:before,
*:after
{
box-sizing: inherit;
}
body {
margin:0;
background: #fafafa;
}
</style>
</head>
<body >
<div id="swagger-ui"></div>
<script src="http://gryphon-central-stage.gryphon-tenant-api.test:3002/docs/asset/swagger-ui-bundle.js?v=ff3f03083fa6f196ebb3182ae209848b"></script>
<script src="http://gryphon-central-stage.gryphon-tenant-api.test:3002/docs/asset/swagger-ui-standalone-preset.js?v=2ff98136c02067086c51951f5e11c8db"></script>
<script>
window.onload = function() {
const urls = [];
urls.push({name: "L5 Swagger UI", url: "http://gryphon-central-stage.gryphon-tenant-api.test:3002/docs?api-docs.json"});
// Build a system
const ui = SwaggerUIBundle({
dom_id: '#swagger-ui',
urls: urls,
"urls.primaryName": "L5 Swagger UI",
operationsSorter: null,
configUrl: null,
validatorUrl: null,
oauth2RedirectUrl: "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/oauth2-callback",
requestInterceptor: function(request) {
request.headers['X-CSRF-TOKEN'] = '';
return request;
},
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout",
docExpansion : "none",
deepLinking: true,
filter: true,
persistAuthorization: "false",
})
window.ui = ui
}
</script>
</body>
</html>
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Handles the OAuth2 callback and retrieves the required file for the redirect.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/oauth2-callback" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/oauth2-callback"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
Show headers
content-type: text/html; charset=utf-8
cache-control: no-cache, private
x-gryphon-app-version: unknown
access-control-allow-origin: *
<!doctype html>
<html lang="en-US">
<body>
<script src="oauth2-redirect.js"></script>
</body>
</html>
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/health
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/health" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/health"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"status": "ok",
"service": "gryphon-api",
"version": "unknown",
"timestamp": "2026-05-14T17:42:31+00:00",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Handle webhook from WorkMarket for payment status updates
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/webhook" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/webhook"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Public login-page endpoint. Returns active site banners only.
requires authentication
GET api/status/outage
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/status/outage" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/status/outage"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"outage": false,
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Return the registry contract as {data: placeholder[], meta: {contexts: {key, label}[], storage_strategy: string}}.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/placeholders" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/placeholders"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/rich-text/resolution-failures
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/resolution-failures" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"context\": \"vmqeopfuudtdsufvyvddq\",
\"end_date\": \"2107-06-13\",
\"page\": 45,
\"per_page\": 16,
\"render_stage\": \"preview\",
\"sort_by\": \"context\",
\"sort_order\": \"desc\",
\"start_date\": \"2026-05-14T17:42:31\",
\"token\": \"eopfuudtdsufvyvddqamn\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/resolution-failures"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"context": "vmqeopfuudtdsufvyvddq",
"end_date": "2107-06-13",
"page": 45,
"per_page": 16,
"render_stage": "preview",
"sort_by": "context",
"sort_order": "desc",
"start_date": "2026-05-14T17:42:31",
"token": "eopfuudtdsufvyvddqamn"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/rich-text/resolution-failures/{richTextResolutionFailure}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/resolution-failures/consequatur" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/resolution-failures/consequatur"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/rich-text/render
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/render" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"content\": {
\"content\": [],
\"type\": \"doc\"
},
\"context\": \"alert_template\",
\"output_format\": \"html\",
\"reference_id\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/render"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"content": {
"content": [],
"type": "doc"
},
"context": "alert_template",
"output_format": "html",
"reference_id": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/rich-text/resolve
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/resolve" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"context\": \"alert_template\",
\"reference_id\": \"consequatur\",
\"render_stage\": \"final_render\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/resolve"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"context": "alert_template",
"reference_id": "consequatur",
"render_stage": "final_render"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/rich-text/validate
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/validate" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"content\": {
\"content\": [],
\"type\": \"doc\"
},
\"context\": \"banner_builder\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/rich-text/validate"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"content": {
"content": [],
"type": "doc"
},
"context": "banner_builder"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/addresses
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/addresses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/addresses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/addresses/zip-lookup
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/addresses/zip-lookup" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/addresses/zip-lookup"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/addresses/complete
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/addresses/complete" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/addresses/complete"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/qs_reports
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/qs_reports" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/qs_reports"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/qs_reports/getEmbedUrl
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/qs_reports/getEmbedUrl" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/qs_reports/getEmbedUrl"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/logout
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/logout" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/logout"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/register/submit
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/register/submit" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"domain\": \"consequatur\",
\"company\": \"mqeopfuudtdsufvyvddqa\",
\"name\": \"mniihfqcoynlazghdtqtq\",
\"email\": \"ablanda@example.org\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/register/submit"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"domain": "consequatur",
"company": "mqeopfuudtdsufvyvddqa",
"name": "mniihfqcoynlazghdtqtq",
"email": "ablanda@example.org"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/professional-designations
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/professional-designations" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/professional-designations"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/professional-designations
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/professional-designations" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"code\": \"consequatur\",
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"is_active\": false,
\"display_order\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/professional-designations"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"code": "consequatur",
"name": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"is_active": false,
"display_order": 17
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST /api/clients/standalone Creates a top-level (standalone) company.
requires authentication
Requires company_role=Operational (enforced by write service).
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/standalone" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"company_name\": \"vmqeopfuudtdsufvyvddq\",
\"company_role\": \"Organizational\",
\"abbreviation\": \"amniihfqcoynlazghdtqt\",
\"domain\": \"qxbajwbpilpmufinllwlo\",
\"under_loa\": false,
\"case_id_type\": \"auydlsmsjuryvojcybzvr\",
\"client_category_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/standalone"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"company_name": "vmqeopfuudtdsufvyvddq",
"company_role": "Organizational",
"abbreviation": "amniihfqcoynlazghdtqt",
"domain": "qxbajwbpilpmufinllwlo",
"under_loa": false,
"case_id_type": "auydlsmsjuryvojcybzvr",
"client_category_id": 17
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST /api/clients/{parentId}/children Creates a child company under the given parent.
requires authentication
Parent must exist and belong to the tenant tree.
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1562/children" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"company_name\": \"vmqeopfuudtdsufvyvddq\",
\"company_role\": \"Organizational\",
\"abbreviation\": \"amniihfqcoynlazghdtqt\",
\"domain\": \"qxbajwbpilpmufinllwlo\",
\"under_loa\": false,
\"case_id_type\": \"auydlsmsjuryvojcybzvr\",
\"client_category_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1562/children"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"company_name": "vmqeopfuudtdsufvyvddq",
"company_role": "Organizational",
"abbreviation": "amniihfqcoynlazghdtqt",
"domain": "qxbajwbpilpmufinllwlo",
"under_loa": false,
"case_id_type": "auydlsmsjuryvojcybzvr",
"client_category_id": 17
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET /api/clients/operational-picker Returns Operational + Active companies visible to the authenticated user, with hierarchy paths resolved in a single batch query.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/operational-picker" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/operational-picker"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET /api/clients/{id}/hierarchy Accepts any node ID (root, child, or deep descendant).
requires authentication
Auto-resolves to the tree root via the closure table. ModelNotFoundException propagates to Handler → 404 'Client not found.'
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1562/hierarchy" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1562/hierarchy"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET /api/clients/{id}/relationships Returns direct parent and direct children for the given client.
requires authentication
ModelNotFoundException propagates to Handler → 404 'Client not found.'
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1562/relationships" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1562/relationships"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET /api/clients/{client}/internal-documents Lists internal documents for a central user on the given client.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/internal-documents" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/internal-documents"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST /api/clients/{client}/internal-documents Uploads a new internal document for the given client.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/internal-documents" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "file=@/tmp/phpOgtDGF" const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/internal-documents"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('file', document.querySelector('input[name="file"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET /api/clients/{client}/internal-documents/{documentId}/preview Returns a signed preview URL when supported, otherwise an inline stream.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/internal-documents/1562/preview" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/internal-documents/1562/preview"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE /api/clients/{client}/internal-documents/{documentId} Soft-deletes an internal document and removes its stored binary.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/internal-documents/1562" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/internal-documents/1562"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST /api/clients/{clientId}/inheritance/detach Detaches a section from parent inheritance, making it locally owned.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/inheritance/detach" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"section\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/inheritance/detach"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"section": "vmqeopfuudtdsufvyvddq"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST /api/clients/{clientId}/inheritance/reattach Re-attaches a section to the parent's inheritance chain.
requires authentication
Requires confirm=true (FormRequest enforces this).
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/inheritance/reattach" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"section\": \"vmqeopfuudtdsufvyvddq\",
\"confirm\": true
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/inheritance/reattach"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"section": "vmqeopfuudtdsufvyvddq",
"confirm": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/clients/{clientId}/sections
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/sections" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/sections"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH /api/clients/{id}/payer
requires authentication
Assign a payer company to this client. Guards:
- payer must exist (AssignPayerRequest)
- if payer is Organizational, it must have complete Finance configuration (inheritance-aware)
On Finance incompleteness: fires audit event payer_assignment_blocked_missing_finance (fire-and-forget) then throws PayerAssignmentBlockedMissingFinanceException (→ 400).
Permission: update:organizations
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/payer" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"payer_client_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/payer"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"payer_client_id": 17
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/clients/{id}/rules
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/rules" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/rules"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/clients/{id}/rules
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/rules" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"narrative_report_submission\": true,
\"auto_assign_case_managers\": false,
\"custom_alerts_enabled\": true,
\"turnaround_days\": 73
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/rules"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"narrative_report_submission": true,
"auto_assign_case_managers": false,
"custom_alerts_enabled": true,
"turnaround_days": 73
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST /api/clients/{id}/move/preview Returns inheritance diff and an operation token required for confirm.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/move/preview" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"new_parent_id\": 73
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/move/preview"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"new_parent_id": 73
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST /api/clients/{id}/move/confirm Executes the move after token and concurrency validation.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/move/confirm" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"operation_token\": \"vmqeopfuudtdsufvyvddq\",
\"expected_updated_at\": \"2026-05-14T17:42:31\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/move/confirm"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"operation_token": "vmqeopfuudtdsufvyvddq",
"expected_updated_at": "2026-05-14T17:42:31"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST /api/clients/{id}/parent-above Inserts a new blank parent company above the given company.
requires authentication
The new parent gets all sections LOCAL; the existing company's settings are unchanged.
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/parent-above" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"company_name\": \"vmqeopfuudtdsufvyvddq\",
\"company_role\": \"Organizational\",
\"abbreviation\": \"amniihfqc\",
\"under_loa\": true,
\"case_id_type\": \"oynlazghdtqtqxbajwbpi\",
\"client_category_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/parent-above"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"company_name": "vmqeopfuudtdsufvyvddq",
"company_role": "Organizational",
"abbreviation": "amniihfqc",
"under_loa": true,
"case_id_type": "oynlazghdtqtqxbajwbpi",
"client_category_id": 17
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST /api/clients/{id}/activate Activates the company. Idempotent if already active.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/activate" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/activate"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST /api/clients/{id}/disable Disables the company. Idempotent if already disabled.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/disable" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/disable"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST /api/clients/{id}/reassign-parent Deprecated legacy endpoint kept only to return an explicit migration error.
requires authentication
Use move preview/confirm endpoints instead.
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/reassign-parent" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"new_parent_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/reassign-parent"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"new_parent_id": 17
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET /api/clients/{id}/users Returns all users associated with the company itself AND all its ancestor companies.
requires authentication
Users from children or siblings are NOT included.
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/users" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/users"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/clients/{client_id}/secure-domains
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/secure-domains" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/secure-domains"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/clients/{client_id}/secure-domains
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/secure-domains" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"domain\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/secure-domains"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"domain": "vmqeopfuudtdsufvyvddq"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/clients/{client_id}/secure-domains/{secureEmailDomain_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/secure-domains/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1/secure-domains/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Global picker — distinct domains registered across all clients. Used by the FE to suggest existing domain values when registering a new entry (business rule 7: "selected from previously registered domains").
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/secure-domains" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/secure-domains"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/clients
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"assessment_label\": \"vmqeopfuudtdsufvyvddq\",
\"category\": {
\"id\": 17
},
\"company_name\": \"mqeopfuudtdsufvyvddqa\",
\"abbreviation\": \"mniihfqcoynlazghdtqtq\",
\"domain\": \"xbajwbpilpmufinllwloa\",
\"addresses\": [
{
\"line_1\": \"uydlsmsjuryvojcybzvrb\",
\"line_2\": \"yickznkygloigmkwxphlv\",
\"city\": \"azjrcnfbaqywuxhgjjmzu\",
\"state\": \"xjubqouzswiwxtrkimfca\",
\"zip_code\": \"tbxspzmrazsroyjpxmqes\",
\"is_primary\": false,
\"type\": \"shipping\"
}
],
\"emails\": [
{
\"address\": \"edyghenqcopwvownkbaml\",
\"type\": \"personal\"
}
],
\"phones\": [
{
\"number\": \"nfngefbeilfzsyuxoezbd\",
\"type\": \"work\"
}
],
\"client_access\": [
{
\"id\": 17
}
],
\"gryphon_activities\": [
{
\"message\": \"consequatur\",
\"priority\": \"consequatur\",
\"visibility\": \"consequatur\",
\"user\": {
\"id\": 17
}
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"assessment_label": "vmqeopfuudtdsufvyvddq",
"category": {
"id": 17
},
"company_name": "mqeopfuudtdsufvyvddqa",
"abbreviation": "mniihfqcoynlazghdtqtq",
"domain": "xbajwbpilpmufinllwloa",
"addresses": [
{
"line_1": "uydlsmsjuryvojcybzvrb",
"line_2": "yickznkygloigmkwxphlv",
"city": "azjrcnfbaqywuxhgjjmzu",
"state": "xjubqouzswiwxtrkimfca",
"zip_code": "tbxspzmrazsroyjpxmqes",
"is_primary": false,
"type": "shipping"
}
],
"emails": [
{
"address": "edyghenqcopwvownkbaml",
"type": "personal"
}
],
"phones": [
{
"number": "nfngefbeilfzsyuxoezbd",
"type": "work"
}
],
"client_access": [
{
"id": 17
}
],
"gryphon_activities": [
{
"message": "consequatur",
"priority": "consequatur",
"visibility": "consequatur",
"user": {
"id": 17
}
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/clients
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/clients/gryphon-activities/{client_id}
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/gryphon-activities/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"message\": \"consequatur\",
\"priority\": \"consequatur\",
\"user\": {
\"id\": 17
},
\"visibility\": \"consequatur\",
\"parent\": {
\"id\": 17
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/gryphon-activities/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"message": "consequatur",
"priority": "consequatur",
"user": {
"id": 17
},
"visibility": "consequatur",
"parent": {
"id": 17
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/clients/gryphon-activities/{client_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/gryphon-activities/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"search\": \"consequatur\",
\"start_date\": \"2026-05-14T17:42:31\",
\"end_date\": \"2026-05-14T17:42:31\",
\"created_at\": \"2026-05-14T17:42:31\",
\"activity_type\": \"consequatur\",
\"priority\": \"consequatur\",
\"visibility\": \"consequatur\",
\"user_id\": 17,
\"parent_id\": 17,
\"updated_at\": \"2026-05-14T17:42:31\",
\"page\": 45,
\"per_page\": 16,
\"limit\": 5,
\"offset\": 50,
\"sort\": \"consequatur\",
\"order\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/gryphon-activities/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"search": "consequatur",
"start_date": "2026-05-14T17:42:31",
"end_date": "2026-05-14T17:42:31",
"created_at": "2026-05-14T17:42:31",
"activity_type": "consequatur",
"priority": "consequatur",
"visibility": "consequatur",
"user_id": 17,
"parent_id": 17,
"updated_at": "2026-05-14T17:42:31",
"page": 45,
"per_page": 16,
"limit": 5,
"offset": 50,
"sort": "consequatur",
"order": "consequatur"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/clients/search
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/search" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/search"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/clients/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/clients/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"assessment_label\": \"vmqeopfuudtdsufvyvddq\",
\"category\": {
\"id\": 17
},
\"case_type_set\": {
\"id\": 17
},
\"company_name\": \"mqeopfuudtdsufvyvddqa\",
\"abbreviation\": \"mniihfqcoynlazghdtqtq\",
\"addresses\": [
{
\"line_1\": \"xbajwbpilpmufinllwloa\",
\"line_2\": \"uydlsmsjuryvojcybzvrb\",
\"city\": \"yickznkygloigmkwxphlv\",
\"state\": \"azjrcnfbaqywuxhgjjmzu\",
\"zip_code\": \"xjubqouzswiwxtrkimfca\",
\"is_primary\": true,
\"type\": \"billing\"
}
],
\"emails\": [
{
\"address\": \"tbxspzmrazsroyjpxmqes\",
\"type\": \"secondary\"
}
],
\"phones\": [
{
\"number\": \"edyghenqcopwvownkbaml\",
\"type\": \"home\"
}
],
\"client_access\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clients/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"assessment_label": "vmqeopfuudtdsufvyvddq",
"category": {
"id": 17
},
"case_type_set": {
"id": 17
},
"company_name": "mqeopfuudtdsufvyvddqa",
"abbreviation": "mniihfqcoynlazghdtqtq",
"addresses": [
{
"line_1": "xbajwbpilpmufinllwloa",
"line_2": "uydlsmsjuryvojcybzvrb",
"city": "yickznkygloigmkwxphlv",
"state": "azjrcnfbaqywuxhgjjmzu",
"zip_code": "xjubqouzswiwxtrkimfca",
"is_primary": true,
"type": "billing"
}
],
"emails": [
{
"address": "tbxspzmrazsroyjpxmqes",
"type": "secondary"
}
],
"phones": [
{
"number": "edyghenqcopwvownkbaml",
"type": "home"
}
],
"client_access": [
{
"id": 17
}
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/client-categories
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-categories" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-categories"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/users/gryphon-activities/{user_id}
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/gryphon-activities/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"message\": \"consequatur\",
\"priority\": \"consequatur\",
\"user\": {
\"id\": 17
},
\"visibility\": \"consequatur\",
\"parent\": {
\"id\": 17
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/gryphon-activities/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"message": "consequatur",
"priority": "consequatur",
"user": {
"id": 17
},
"visibility": "consequatur",
"parent": {
"id": 17
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/users/gryphon-activities/{user_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/gryphon-activities/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"search\": \"consequatur\",
\"start_date\": \"2026-05-14T17:42:31\",
\"end_date\": \"2026-05-14T17:42:31\",
\"created_at\": \"2026-05-14T17:42:31\",
\"activity_type\": \"consequatur\",
\"priority\": \"consequatur\",
\"visibility\": \"consequatur\",
\"user_id\": 17,
\"parent_id\": 17,
\"updated_at\": \"2026-05-14T17:42:31\",
\"page\": 45,
\"per_page\": 16,
\"limit\": 5,
\"offset\": 50,
\"sort\": \"consequatur\",
\"order\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/gryphon-activities/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"search": "consequatur",
"start_date": "2026-05-14T17:42:31",
"end_date": "2026-05-14T17:42:31",
"created_at": "2026-05-14T17:42:31",
"activity_type": "consequatur",
"priority": "consequatur",
"visibility": "consequatur",
"user_id": 17,
"parent_id": 17,
"updated_at": "2026-05-14T17:42:31",
"page": 45,
"per_page": 16,
"limit": 5,
"offset": 50,
"sort": "consequatur",
"order": "consequatur"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/users/me
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/me" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/me"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/users/me
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/me" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"password\": \"O[2UZ5ij-e\\/dl4m{o,\",
\"legal_first_name\": \"dqamniihfqcoynlazghdt\",
\"legal_last_name\": \"qtqxbajwbpilpmufinllw\",
\"status\": \"consequatur\",
\"phones\": [
{
\"type\": \"mobile\"
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/me"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"password": "O[2UZ5ij-e\/dl4m{o,",
"legal_first_name": "dqamniihfqcoynlazghdt",
"legal_last_name": "qtqxbajwbpilpmufinllw",
"status": "consequatur",
"phones": [
{
"type": "mobile"
}
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/users/profile-image/{user_id}
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/profile-image/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "profile_image=@/tmp/phpgETqMu" const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/profile-image/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('profile_image', document.querySelector('input[name="profile_image"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/users/me/profile-image
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/me/profile-image" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "profile_image=@/tmp/phph7PY1g" const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/me/profile-image"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('profile_image', document.querySelector('input[name="profile_image"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/users/profile-image/{user_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/profile-image/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/profile-image/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/users
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"email\": \"kunde.eloisa@example.com\",
\"password\": \"4[*UyPJ\\\"}6\",
\"role\": {
\"id\": 17
},
\"legal_first_name\": \"mqeopfuudtdsufvyvddqa\",
\"legal_last_name\": \"mniihfqcoynlazghdtqtq\",
\"user_type\": \"consequatur\",
\"caseload\": 45,
\"payee_type\": \"consequatur\",
\"employment_type\": \"consequatur\",
\"status\": \"consequatur\",
\"compensation_type\": \"consequatur\",
\"pay_period\": \"consequatur\",
\"deduct_drive_time\": false,
\"phones\": [
{
\"number\": \"mqeopfuudtdsufvyvddqa\",
\"type\": \"work\"
}
],
\"emails\": [
{
\"address\": \"mniihfqcoynlazghdtqtq\",
\"type\": \"secondary\"
}
],
\"tags\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"email": "kunde.eloisa@example.com",
"password": "4[*UyPJ\"}6",
"role": {
"id": 17
},
"legal_first_name": "mqeopfuudtdsufvyvddqa",
"legal_last_name": "mniihfqcoynlazghdtqtq",
"user_type": "consequatur",
"caseload": 45,
"payee_type": "consequatur",
"employment_type": "consequatur",
"status": "consequatur",
"compensation_type": "consequatur",
"pay_period": "consequatur",
"deduct_drive_time": false,
"phones": [
{
"number": "mqeopfuudtdsufvyvddqa",
"type": "work"
}
],
"emails": [
{
"address": "mniihfqcoynlazghdtqtq",
"type": "secondary"
}
],
"tags": [
{
"id": 17
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Create a new user from the dashboard with Auth0-first workflow.
requires authentication
This endpoint creates the user in Auth0 first (sending invite email), then creates the database record with the returned auth0_id. If the database creation fails, the Auth0 user is automatically deleted (rollback).
Access Requirements:
- Engineering user (user_type with name='Engineering') via EngineeringDevOnly middleware
- Environment match via AUTOMATED_USER_CREATION_WORKFLOW_ENVIRONMENT config
- create:users permission checked in Form Request authorization
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/invite" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"client_id\": 17,
\"email\": \"carolyne.luettgen@example.org\",
\"legal_first_name\": \"fuudtdsufvyvddqamniih\",
\"legal_last_name\": \"fqcoynlazghdtqtqxbajw\",
\"name\": \"bpilpmufinllwloauydls\",
\"preferred_first_name\": \"msjuryvojcybzvrbyickz\",
\"preferred_last_name\": \"nkygloigmkwxphlvazjrc\",
\"date_of_birth\": \"2026-05-14T17:42:31\",
\"ssn\": \"consequatur\",
\"usertype\": \"consequatur\",
\"status\": \"consequatur\",
\"phone\": \"consequatur\",
\"role\": {
\"id\": 17
},
\"payee_type\": \"consequatur\",
\"employment_type\": \"consequatur\",
\"compensation_type\": \"consequatur\",
\"pay_period\": \"consequatur\",
\"deduct_drive_time\": true,
\"phones\": [
{
\"number\": \"consequatur\",
\"type\": \"home\",
\"sms\": false
}
],
\"emails\": [
{
\"address\": \"mqeopfuudtdsufvyvddqa\",
\"type\": \"personal\"
}
],
\"tags\": [
{
\"id\": 17
}
],
\"roles\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/invite"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"client_id": 17,
"email": "carolyne.luettgen@example.org",
"legal_first_name": "fuudtdsufvyvddqamniih",
"legal_last_name": "fqcoynlazghdtqtqxbajw",
"name": "bpilpmufinllwloauydls",
"preferred_first_name": "msjuryvojcybzvrbyickz",
"preferred_last_name": "nkygloigmkwxphlvazjrc",
"date_of_birth": "2026-05-14T17:42:31",
"ssn": "consequatur",
"usertype": "consequatur",
"status": "consequatur",
"phone": "consequatur",
"role": {
"id": 17
},
"payee_type": "consequatur",
"employment_type": "consequatur",
"compensation_type": "consequatur",
"pay_period": "consequatur",
"deduct_drive_time": true,
"phones": [
{
"number": "consequatur",
"type": "home",
"sms": false
}
],
"emails": [
{
"address": "mqeopfuudtdsufvyvddqa",
"type": "personal"
}
],
"tags": [
{
"id": 17
}
],
"roles": [
{
"id": 17
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/users
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"email\": \"kunde.eloisa@example.com\",
\"phone\": \"hfqcoynlazghdtqtq\",
\"case_id\": 17,
\"tag_id\": [
17
],
\"tag_category_id\": 17,
\"tag_type\": \"mqeopfuudtdsufvyvddqa\",
\"case_load\": true,
\"sort_by\": \"city\",
\"sort_order\": \"asc\",
\"page\": 45,
\"per_page\": 13,
\"limit\": 8,
\"offset\": 30,
\"role_id\": 17,
\"role_ids\": [
17
],
\"role_names\": [
\"mqeopfuudtdsufvyvddqa\"
],
\"case_assignment\": false,
\"has_client\": false,
\"internal_only\": false,
\"status\": [
\"standby\"
],
\"domain\": [
\"Client Services\"
],
\"filter_mode\": \"or\",
\"valid_license\": false,
\"work_status\": [
\"Training\"
],
\"city\": \"mniihfqcoynlazghdtqtq\",
\"state\": \"xb\",
\"zip\": \"ajwbpilpm\",
\"first_name\": \"ufinllwloauydlsmsjury\",
\"last_name\": \"vojcybzvrbyickznkyglo\",
\"middle_name\": \"igmkwxphlvazjrcnfbaqy\",
\"address\": \"wuxhgjjmzuxjubqouzswi\",
\"capability\": \"wxtrkimfcatbxspzmrazs\",
\"periscope_id\": 63,
\"payee_type\": \"independent_contractor_individual\",
\"compensation_type\": \"salary\",
\"pay_period\": \"monthly\",
\"direct_deposit\": true,
\"account_type\": \"HR\",
\"document_types\": \"oyjpxmqesedyghenqcopw\",
\"document_expiration_start\": \"2026-05-14T17:42:31\",
\"document_expiration_end\": \"2026-05-14T17:42:31\",
\"context\": \"assessor\",
\"filters\": {
\"logic\": \"AND\"
},
\"licenses\": [
{
\"id\": 17
}
],
\"professions\": [
{
\"id\": 17
}
],
\"trainings\": [
{
\"id\": 17
}
],
\"request_types\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"email": "kunde.eloisa@example.com",
"phone": "hfqcoynlazghdtqtq",
"case_id": 17,
"tag_id": [
17
],
"tag_category_id": 17,
"tag_type": "mqeopfuudtdsufvyvddqa",
"case_load": true,
"sort_by": "city",
"sort_order": "asc",
"page": 45,
"per_page": 13,
"limit": 8,
"offset": 30,
"role_id": 17,
"role_ids": [
17
],
"role_names": [
"mqeopfuudtdsufvyvddqa"
],
"case_assignment": false,
"has_client": false,
"internal_only": false,
"status": [
"standby"
],
"domain": [
"Client Services"
],
"filter_mode": "or",
"valid_license": false,
"work_status": [
"Training"
],
"city": "mniihfqcoynlazghdtqtq",
"state": "xb",
"zip": "ajwbpilpm",
"first_name": "ufinllwloauydlsmsjury",
"last_name": "vojcybzvrbyickznkyglo",
"middle_name": "igmkwxphlvazjrcnfbaqy",
"address": "wuxhgjjmzuxjubqouzswi",
"capability": "wxtrkimfcatbxspzmrazs",
"periscope_id": 63,
"payee_type": "independent_contractor_individual",
"compensation_type": "salary",
"pay_period": "monthly",
"direct_deposit": true,
"account_type": "HR",
"document_types": "oyjpxmqesedyghenqcopw",
"document_expiration_start": "2026-05-14T17:42:31",
"document_expiration_end": "2026-05-14T17:42:31",
"context": "assessor",
"filters": {
"logic": "AND"
},
"licenses": [
{
"id": 17
}
],
"professions": [
{
"id": 17
}
],
"trainings": [
{
"id": 17
}
],
"request_types": [
{
"id": 17
}
]
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/users/search
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/search" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"email\": \"kunde.eloisa@example.com\",
\"phone\": \"hfqcoynlazghdtqtq\",
\"case_id\": 17,
\"tag_id\": [
17
],
\"tag_category_id\": 17,
\"tag_type\": \"mqeopfuudtdsufvyvddqa\",
\"case_load\": false,
\"sort_by\": \"city\",
\"sort_order\": \"asc\",
\"page\": 45,
\"per_page\": 13,
\"limit\": 8,
\"offset\": 30,
\"role_id\": 17,
\"role_ids\": [
17
],
\"role_names\": [
\"mqeopfuudtdsufvyvddqa\"
],
\"case_assignment\": true,
\"has_client\": true,
\"internal_only\": false,
\"status\": [
\"pending\"
],
\"domain\": [
\"clinical\"
],
\"filter_mode\": \"and\",
\"valid_license\": true,
\"work_status\": [
\"Active\"
],
\"city\": \"mniihfqcoynlazghdtqtq\",
\"state\": \"xb\",
\"zip\": \"ajwbpilpm\",
\"first_name\": \"ufinllwloauydlsmsjury\",
\"last_name\": \"vojcybzvrbyickznkyglo\",
\"middle_name\": \"igmkwxphlvazjrcnfbaqy\",
\"address\": \"wuxhgjjmzuxjubqouzswi\",
\"capability\": \"wxtrkimfcatbxspzmrazs\",
\"periscope_id\": 63,
\"payee_type\": \"employee\",
\"compensation_type\": \"piece_work\",
\"pay_period\": \"monthly\",
\"direct_deposit\": true,
\"account_type\": \"executive_suite\",
\"document_types\": \"oyjpxmqesedyghenqcopw\",
\"document_expiration_start\": \"2026-05-14T17:42:31\",
\"document_expiration_end\": \"2026-05-14T17:42:31\",
\"context\": \"consultant\",
\"filters\": {
\"logic\": \"OR\"
},
\"licenses\": [
{
\"id\": 17
}
],
\"professions\": [
{
\"id\": 17
}
],
\"trainings\": [
{
\"id\": 17
}
],
\"request_types\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/search"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"email": "kunde.eloisa@example.com",
"phone": "hfqcoynlazghdtqtq",
"case_id": 17,
"tag_id": [
17
],
"tag_category_id": 17,
"tag_type": "mqeopfuudtdsufvyvddqa",
"case_load": false,
"sort_by": "city",
"sort_order": "asc",
"page": 45,
"per_page": 13,
"limit": 8,
"offset": 30,
"role_id": 17,
"role_ids": [
17
],
"role_names": [
"mqeopfuudtdsufvyvddqa"
],
"case_assignment": true,
"has_client": true,
"internal_only": false,
"status": [
"pending"
],
"domain": [
"clinical"
],
"filter_mode": "and",
"valid_license": true,
"work_status": [
"Active"
],
"city": "mniihfqcoynlazghdtqtq",
"state": "xb",
"zip": "ajwbpilpm",
"first_name": "ufinllwloauydlsmsjury",
"last_name": "vojcybzvrbyickznkyglo",
"middle_name": "igmkwxphlvazjrcnfbaqy",
"address": "wuxhgjjmzuxjubqouzswi",
"capability": "wxtrkimfcatbxspzmrazs",
"periscope_id": 63,
"payee_type": "employee",
"compensation_type": "piece_work",
"pay_period": "monthly",
"direct_deposit": true,
"account_type": "executive_suite",
"document_types": "oyjpxmqesedyghenqcopw",
"document_expiration_start": "2026-05-14T17:42:31",
"document_expiration_end": "2026-05-14T17:42:31",
"context": "consultant",
"filters": {
"logic": "OR"
},
"licenses": [
{
"id": 17
}
],
"professions": [
{
"id": 17
}
],
"trainings": [
{
"id": 17
}
],
"request_types": [
{
"id": 17
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Export users to CSV.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/export" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"email\": \"kunde.eloisa@example.com\",
\"phone\": \"hfqcoynlazghdtqtq\",
\"case_id\": 17,
\"tag_id\": [
17
],
\"tag_category_id\": 17,
\"tag_type\": \"mqeopfuudtdsufvyvddqa\",
\"case_load\": false,
\"sort_by\": \"state\",
\"sort_order\": \"desc\",
\"page\": 45,
\"per_page\": 13,
\"limit\": 8,
\"offset\": 30,
\"role_id\": 17,
\"role_ids\": [
17
],
\"role_names\": [
\"mqeopfuudtdsufvyvddqa\"
],
\"case_assignment\": false,
\"has_client\": false,
\"internal_only\": false,
\"status\": [
\"standby\"
],
\"domain\": [
\"Engineering\"
],
\"filter_mode\": \"or\",
\"valid_license\": true,
\"work_status\": [
\"Active\"
],
\"city\": \"mniihfqcoynlazghdtqtq\",
\"state\": \"xb\",
\"zip\": \"ajwbpilpm\",
\"first_name\": \"ufinllwloauydlsmsjury\",
\"last_name\": \"vojcybzvrbyickznkyglo\",
\"middle_name\": \"igmkwxphlvazjrcnfbaqy\",
\"address\": \"wuxhgjjmzuxjubqouzswi\",
\"capability\": \"wxtrkimfcatbxspzmrazs\",
\"periscope_id\": 63,
\"payee_type\": \"employee\",
\"compensation_type\": \"salary\",
\"pay_period\": \"semi_monthly\",
\"direct_deposit\": true,
\"account_type\": \"Client Services\",
\"document_types\": \"oyjpxmqesedyghenqcopw\",
\"document_expiration_start\": \"2026-05-14T17:42:31\",
\"document_expiration_end\": \"2026-05-14T17:42:31\",
\"context\": \"assessor\",
\"filters\": {
\"logic\": \"OR\"
},
\"fields\": [
\"vownkbamlnfngefbeilfz\"
],
\"field_order\": [
\"syuxoezbdtabptcyyerev\"
],
\"licenses\": [
{
\"id\": 17
}
],
\"professions\": [
{
\"id\": 17
}
],
\"trainings\": [
{
\"id\": 17
}
],
\"request_types\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/export"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"email": "kunde.eloisa@example.com",
"phone": "hfqcoynlazghdtqtq",
"case_id": 17,
"tag_id": [
17
],
"tag_category_id": 17,
"tag_type": "mqeopfuudtdsufvyvddqa",
"case_load": false,
"sort_by": "state",
"sort_order": "desc",
"page": 45,
"per_page": 13,
"limit": 8,
"offset": 30,
"role_id": 17,
"role_ids": [
17
],
"role_names": [
"mqeopfuudtdsufvyvddqa"
],
"case_assignment": false,
"has_client": false,
"internal_only": false,
"status": [
"standby"
],
"domain": [
"Engineering"
],
"filter_mode": "or",
"valid_license": true,
"work_status": [
"Active"
],
"city": "mniihfqcoynlazghdtqtq",
"state": "xb",
"zip": "ajwbpilpm",
"first_name": "ufinllwloauydlsmsjury",
"last_name": "vojcybzvrbyickznkyglo",
"middle_name": "igmkwxphlvazjrcnfbaqy",
"address": "wuxhgjjmzuxjubqouzswi",
"capability": "wxtrkimfcatbxspzmrazs",
"periscope_id": 63,
"payee_type": "employee",
"compensation_type": "salary",
"pay_period": "semi_monthly",
"direct_deposit": true,
"account_type": "Client Services",
"document_types": "oyjpxmqesedyghenqcopw",
"document_expiration_start": "2026-05-14T17:42:31",
"document_expiration_end": "2026-05-14T17:42:31",
"context": "assessor",
"filters": {
"logic": "OR"
},
"fields": [
"vownkbamlnfngefbeilfz"
],
"field_order": [
"syuxoezbdtabptcyyerev"
],
"licenses": [
{
"id": 17
}
],
"professions": [
{
"id": 17
}
],
"trainings": [
{
"id": 17
}
],
"request_types": [
{
"id": 17
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/users/searchable-fields
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/searchable-fields" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/searchable-fields"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/users/sortable-fields
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/sortable-fields" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/sortable-fields"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/users/{user_id}/compliance-documents
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/compliance-documents" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/compliance-documents"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/users/{user_id}/workmarket-expenses
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/workmarket-expenses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/workmarket-expenses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get the capabilities assigned to a user.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/capabilities" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/capabilities"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Assign capabilities to a user.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/capabilities" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"capabilities\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/capabilities"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"capabilities": [
{
"id": 17
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove a capability from a user.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/capabilities/24" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/capabilities/24"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/users/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"email\": \"kunde.eloisa@example.com\",
\"password\": \"4[*UyPJ\\\"}6\",
\"caseload\": 26,
\"legal_first_name\": \"dtqtqxbajwbpilpmufinl\",
\"legal_last_name\": \"lwloauydlsmsjuryvojcy\",
\"preferred_first_name\": \"bzvrbyickznkygloigmkw\",
\"preferred_last_name\": \"xphlvazjrcnfbaqywuxhg\",
\"date_of_birth\": \"2026-05-14T17:42:31\",
\"phone\": \"consequatur\",
\"ssn\": \"mqeopfuudtdsufvyvddqa\",
\"start_date\": \"2026-05-14T17:42:31\",
\"work_status\": \"mniihfqcoynlazghdtqtq\",
\"last_day_of_work\": \"2026-05-14T17:42:31\",
\"user_type\": \"consequatur\",
\"upper_first_name\": \"mqeopfuudtdsufvyvddqa\",
\"upper_last_name\": \"mniihfqcoynlazghdtqtq\",
\"salutation\": \"xbajwbpilpmufinllwloa\",
\"payee_type\": \"consequatur\",
\"employment_type\": \"consequatur\",
\"status\": \"consequatur\",
\"compensation_type\": \"consequatur\",
\"pay_period\": \"consequatur\",
\"deduct_drive_time\": true,
\"workmarket_id\": \"lILn\",
\"phones\": [
{
\"number\": \"consequatur\",
\"type\": \"mobile\"
}
],
\"emails\": [
{
\"address\": \"mqeopfuudtdsufvyvddqa\",
\"type\": \"main\"
}
],
\"tags\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"email": "kunde.eloisa@example.com",
"password": "4[*UyPJ\"}6",
"caseload": 26,
"legal_first_name": "dtqtqxbajwbpilpmufinl",
"legal_last_name": "lwloauydlsmsjuryvojcy",
"preferred_first_name": "bzvrbyickznkygloigmkw",
"preferred_last_name": "xphlvazjrcnfbaqywuxhg",
"date_of_birth": "2026-05-14T17:42:31",
"phone": "consequatur",
"ssn": "mqeopfuudtdsufvyvddqa",
"start_date": "2026-05-14T17:42:31",
"work_status": "mniihfqcoynlazghdtqtq",
"last_day_of_work": "2026-05-14T17:42:31",
"user_type": "consequatur",
"upper_first_name": "mqeopfuudtdsufvyvddqa",
"upper_last_name": "mniihfqcoynlazghdtqtq",
"salutation": "xbajwbpilpmufinllwloa",
"payee_type": "consequatur",
"employment_type": "consequatur",
"status": "consequatur",
"compensation_type": "consequatur",
"pay_period": "consequatur",
"deduct_drive_time": true,
"workmarket_id": "lILn",
"phones": [
{
"number": "consequatur",
"type": "mobile"
}
],
"emails": [
{
"address": "mqeopfuudtdsufvyvddqa",
"type": "main"
}
],
"tags": [
{
"id": 17
}
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/users/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/users/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/users/{user_id}/visible-clients
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/visible-clients" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/visible-clients"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/users/{user_id}/visible-clients
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/visible-clients" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"visibleClients\": [
{
\"id\": 17,
\"includeDescendants\": false
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/visible-clients"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"visibleClients": [
{
"id": 17,
"includeDescendants": false
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/users/{user_id}/visible-clients/{client_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/visible-clients/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/visible-clients/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/users/{user_id}/visible-clients
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/visible-clients" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"visibleClients\": [
{
\"id\": 17,
\"includeDescendants\": false
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/visible-clients"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"visibleClients": [
{
"id": 17,
"includeDescendants": false
}
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/users/{user_id}/visible-clients/{client_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/visible-clients/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/visible-clients/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the user's unavailability records.
requires authentication
Store a newly created user unavailability record.
requires authentication
Update the specified user unavailability record.
requires authentication
Remove the specified user unavailability record.
requires authentication
GET api/clinician-casework-preferences
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/clinician-casework-preferences
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": 17,
\"client_id\": 17,
\"preference_flag\": \"Preferred\",
\"mentor_id\": 17,
\"caseload\": 45,
\"assessor_note\": \"consequatur\",
\"consultant_note\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": 17,
"client_id": 17,
"preference_flag": "Preferred",
"mentor_id": 17,
"caseload": 45,
"assessor_note": "consequatur",
"consultant_note": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/clinician-casework-preferences/user/{userId}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences/user/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences/user/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/clinician-casework-preferences/{clinicianCaseworkPreference_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/clinician-casework-preferences/{clinicianCaseworkPreference_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": 17,
\"client_id\": 17,
\"preference_flag\": \"Last Resort\",
\"mentor_id\": 17,
\"caseload\": 45,
\"assessor_note\": \"consequatur\",
\"consultant_note\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": 17,
"client_id": 17,
"preference_flag": "Last Resort",
"mentor_id": 17,
"caseload": 45,
"assessor_note": "consequatur",
"consultant_note": "consequatur"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/clinician-casework-preferences/{clinicianCaseworkPreference_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-casework-preferences/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the user's notes.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/notes" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/notes"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified user note.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/notes/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/notes/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created note for the user.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/notes" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"note\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/notes"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"note": "vmqeopfuudtdsufvyvddq"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified user note.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/notes/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"note\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/notes/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"note": "vmqeopfuudtdsufvyvddq"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified user note.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/notes/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/notes/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a paginated listing of profile change requests for a user.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/profile-change-requests" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/profile-change-requests"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created profile change request.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/profile-change-requests" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"requested_changes\": {
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"email\": \"kunde.eloisa@example.com\",
\"legal_first_name\": \"hfqcoynlazghdtqtqxbaj\",
\"legal_last_name\": \"wbpilpmufinllwloauydl\",
\"preferred_first_name\": \"smsjuryvojcybzvrbyick\",
\"preferred_last_name\": \"znkygloigmkwxphlvazjr\",
\"date_of_birth\": \"2026-05-14T17:42:31\",
\"salutation\": \"cnfbaqywuxhgjjmzuxjub\",
\"status\": \"consequatur\",
\"mentor_id\": 17,
\"roles\": [
{
\"id\": 17
}
],
\"emails\": [
{
\"address\": \"mqeopfuudtdsufvyvddqa\",
\"type\": \"secondary\"
}
],
\"phones\": [
{
\"number\": \"mniihfqcoynlazghd\",
\"sms\": true,
\"type\": \"mobile\"
}
],
\"addresses\": [
{
\"line_1\": \"tqtqxbajwbpilpmufinll\",
\"line_2\": \"wloauydlsmsjuryvojcyb\",
\"city\": \"zvrbyickznkygloigmkwx\",
\"state\": \"phlvazjrcnfbaqywuxhgj\",
\"zip\": \"jmzuxjubqouzswiwx\",
\"county_name\": \"trkimfcatbxspzmrazsro\",
\"is_primary\": false,
\"type\": \"shipping\"
}
]
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/profile-change-requests"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"requested_changes": {
"name": "vmqeopfuudtdsufvyvddq",
"email": "kunde.eloisa@example.com",
"legal_first_name": "hfqcoynlazghdtqtqxbaj",
"legal_last_name": "wbpilpmufinllwloauydl",
"preferred_first_name": "smsjuryvojcybzvrbyick",
"preferred_last_name": "znkygloigmkwxphlvazjr",
"date_of_birth": "2026-05-14T17:42:31",
"salutation": "cnfbaqywuxhgjjmzuxjub",
"status": "consequatur",
"mentor_id": 17,
"roles": [
{
"id": 17
}
],
"emails": [
{
"address": "mqeopfuudtdsufvyvddqa",
"type": "secondary"
}
],
"phones": [
{
"number": "mniihfqcoynlazghd",
"sms": true,
"type": "mobile"
}
],
"addresses": [
{
"line_1": "tqtqxbajwbpilpmufinll",
"line_2": "wloauydlsmsjuryvojcyb",
"city": "zvrbyickznkygloigmkwx",
"state": "phlvazjrcnfbaqywuxhgj",
"zip": "jmzuxjubqouzswiwx",
"county_name": "trkimfcatbxspzmrazsro",
"is_primary": false,
"type": "shipping"
}
]
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified profile change request.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/profile-change-requests/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/profile-change-requests/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a paginated listing of all profile change requests.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/profile-change-requests" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"approved\",
\"user_id\": 17,
\"requester_id\": 17,
\"reviewer_id\": 17,
\"created_from\": \"2026-05-14\",
\"created_to\": \"2107-06-13\",
\"sort_by\": \"status\",
\"sort_order\": \"desc\",
\"per_page\": 13,
\"page\": 56,
\"limit\": 5,
\"offset\": 50
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/profile-change-requests"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "approved",
"user_id": 17,
"requester_id": 17,
"reviewer_id": 17,
"created_from": "2026-05-14",
"created_to": "2107-06-13",
"sort_by": "status",
"sort_order": "desc",
"per_page": 13,
"page": 56,
"limit": 5,
"offset": 50
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified profile change request by ID.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/profile-change-requests/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/profile-change-requests/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Approve a profile change request.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/profile-change-requests/1/approve" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reviewer_notes\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/profile-change-requests/1/approve"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reviewer_notes": "vmqeopfuudtdsufvyvddq"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Cancel a profile change request.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/profile-change-requests/1/cancel" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/profile-change-requests/1/cancel"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Deny a profile change request.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/profile-change-requests/1/deny" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reviewer_notes\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/profile-change-requests/1/deny"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reviewer_notes": "vmqeopfuudtdsufvyvddq"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of document change requests for a user.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/document-change-requests" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/document-change-requests"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created document change request.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/document-change-requests" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "action_type=update"\
--form "document_id=17"\
--form "requested_changes[title]=mqeopfuudtdsufvyvddqa"\
--form "requested_changes[document_label]=mniihfqcoynlazghdtqtq"\
--form "requested_changes[document_type]=xbajwbpilpmufinllwloa"\
--form "requested_changes[state]=uydlsmsjuryvojcybzvrb"\
--form "requested_changes[expiration_date]=2026-05-14T17:42:31"\
--form "requested_changes[description]=Dolores dolorum amet iste laborum eius est dolor."\
--form "file=@/tmp/phpeqrLzE" const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/document-change-requests"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('action_type', 'update');
body.append('document_id', '17');
body.append('requested_changes[title]', 'mqeopfuudtdsufvyvddqa');
body.append('requested_changes[document_label]', 'mniihfqcoynlazghdtqtq');
body.append('requested_changes[document_type]', 'xbajwbpilpmufinllwloa');
body.append('requested_changes[state]', 'uydlsmsjuryvojcybzvrb');
body.append('requested_changes[expiration_date]', '2026-05-14T17:42:31');
body.append('requested_changes[description]', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('file', document.querySelector('input[name="file"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified document change request.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/document-change-requests/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/document-change-requests/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified document change request.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/document-change-requests/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "action_type=create"\
--form "requested_changes[title]=vmqeopfuudtdsufvyvddq"\
--form "requested_changes[document_label]=amniihfqcoynlazghdtqt"\
--form "requested_changes[document_type]=qxbajwbpilpmufinllwlo"\
--form "requested_changes[state]=auydlsmsjuryvojcybzvr"\
--form "requested_changes[expiration_date]=2026-05-14T17:42:31"\
--form "requested_changes[description]=Dolores dolorum amet iste laborum eius est dolor."\
--form "file=@/tmp/phpQQvXVo" const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/document-change-requests/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('action_type', 'create');
body.append('requested_changes[title]', 'vmqeopfuudtdsufvyvddq');
body.append('requested_changes[document_label]', 'amniihfqcoynlazghdtqt');
body.append('requested_changes[document_type]', 'qxbajwbpilpmufinllwlo');
body.append('requested_changes[state]', 'auydlsmsjuryvojcybzvr');
body.append('requested_changes[expiration_date]', '2026-05-14T17:42:31');
body.append('requested_changes[description]', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('file', document.querySelector('input[name="file"]').files[0]);
fetch(url, {
method: "PATCH",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified document change request.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/document-change-requests/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/document-change-requests/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Return all blackout/unavailability dates for a specific user.
requires authentication
Used by the Clinician Profile tab to display unavailability.
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/blackouts" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/users/1/blackouts"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a paginated listing of all document change requests.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/document-change-requests" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"denied\",
\"request_type\": \"update\",
\"user_id\": 17,
\"requested_by\": 17,
\"reviewed_by\": 17,
\"document_id\": 17,
\"created_from\": \"2026-05-14T17:42:31\",
\"created_to\": \"2026-05-14T17:42:31\",
\"sort_by\": \"request_type\",
\"sort_order\": \"desc\",
\"per_page\": 13
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/document-change-requests"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "denied",
"request_type": "update",
"user_id": 17,
"requested_by": 17,
"reviewed_by": 17,
"document_id": 17,
"created_from": "2026-05-14T17:42:31",
"created_to": "2026-05-14T17:42:31",
"sort_by": "request_type",
"sort_order": "desc",
"per_page": 13
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified document change request by ID.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/document-change-requests/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/document-change-requests/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Approve a document change request.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/document-change-requests/1/approve" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reviewer_notes\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/document-change-requests/1/approve"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reviewer_notes": "vmqeopfuudtdsufvyvddq"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Deny a document change request.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/document-change-requests/1/deny" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"denial_reason\": \"vmqeopfuudtdsufvyvddq\",
\"reviewer_notes\": \"amniihfqcoynlazghdtqt\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/document-change-requests/1/deny"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"denial_reason": "vmqeopfuudtdsufvyvddq",
"reviewer_notes": "amniihfqcoynlazghdtqt"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Cancel a document change request.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/document-change-requests/1/cancel" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/document-change-requests/1/cancel"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/roles
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/roles
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"user_type\": \"consequatur\",
\"permissions\": [
17
],
\"permission_groups\": [
17
],
\"api_id\": \"consequatur\",
\"persona_abbreviation\": \"consequatur\",
\"persona_type\": \"consequatur\",
\"is_capability\": true,
\"is_specialty\": false,
\"case_assignment\": false,
\"bypasses_document_approval\": true,
\"visibility_scope\": \"consequatur\",
\"notes\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"user_type": "consequatur",
"permissions": [
17
],
"permission_groups": [
17
],
"api_id": "consequatur",
"persona_abbreviation": "consequatur",
"persona_type": "consequatur",
"is_capability": true,
"is_specialty": false,
"case_assignment": false,
"bypasses_document_approval": true,
"visibility_scope": "consequatur",
"notes": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/roles/capabilities
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/capabilities" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"search\": \"vmqeopfuudtdsufvyvddq\",
\"sort_by\": \"last_updated_by\",
\"sort_order\": \"asc\",
\"page\": 2,
\"per_page\": 13
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/capabilities"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"search": "vmqeopfuudtdsufvyvddq",
"sort_by": "last_updated_by",
"sort_order": "asc",
"page": 2,
"per_page": 13
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/roles/capabilities
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/capabilities" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\",
\"domains\": [
\"Engineering\"
],
\"permissions\": [
17
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/capabilities"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit.",
"domains": [
"Engineering"
],
"permissions": [
17
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/roles/capabilities/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/capabilities/24" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/capabilities/24"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/roles/capabilities/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/capabilities/24" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"version\": 73,
\"name\": \"mqeopfuudtdsufvyvddqa\",
\"description\": \"Molestias ipsam sit veniam sed fuga aspernatur.\",
\"domains\": [
\"Client\"
],
\"permissions\": [
17
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/capabilities/24"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"version": 73,
"name": "mqeopfuudtdsufvyvddqa",
"description": "Molestias ipsam sit veniam sed fuga aspernatur.",
"domains": [
"Client"
],
"permissions": [
17
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/roles/capabilities/{capability_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/capabilities/24" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/capabilities/24"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/roles/domains
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/domains" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/domains"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/roles/grouped-by-domain
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/grouped-by-domain" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/grouped-by-domain"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/roles/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get all users assigned to a role.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24/users" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24/users"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/roles/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"version\": 73,
\"name\": \"mqeopfuudtdsufvyvddqa\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"user_type\": \"consequatur\",
\"permissions\": [
17
],
\"permission_groups\": [
17
],
\"api_id\": \"consequatur\",
\"persona_abbreviation\": \"consequatur\",
\"persona_type\": \"consequatur\",
\"is_capability\": true,
\"is_specialty\": true,
\"case_assignment\": false,
\"bypasses_document_approval\": true,
\"visibility_scope\": \"consequatur\",
\"notes\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"version": 73,
"name": "mqeopfuudtdsufvyvddqa",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"user_type": "consequatur",
"permissions": [
17
],
"permission_groups": [
17
],
"api_id": "consequatur",
"persona_abbreviation": "consequatur",
"persona_type": "consequatur",
"is_capability": true,
"is_specialty": true,
"case_assignment": false,
"bypasses_document_approval": true,
"visibility_scope": "consequatur",
"notes": "consequatur"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/roles/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/roles/{role_id}/expense-types
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24/expense-types" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24/expense-types"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/roles/{role_id}/expense-types
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24/expense-types" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"expense_type_codes\": [
\"consequatur\"
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24/expense-types"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"expense_type_codes": [
"consequatur"
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/roles/{role_id}/expense-types
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24/expense-types" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"expense_type_codes\": [
\"consequatur\"
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24/expense-types"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"expense_type_codes": [
"consequatur"
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/roles/{role_id}/expense-types
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24/expense-types" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"expense_type_codes\": [
\"consequatur\"
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/roles/24/expense-types"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"expense_type_codes": [
"consequatur"
]
};
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/permissions
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/permissions" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/permissions"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get permissions grouped by module and subgroup.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/permissions/grouped-by-group" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/permissions/grouped-by-group"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/permissions/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/permissions/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/permissions/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/permission-groups
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/permission-groups" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/permission-groups"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/permission-groups/{permissionGroup_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/permission-groups/202" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/permission-groups/202"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Show the form for creating a new resource.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"slug\": \"consequatur\",
\"is_active\": true,
\"has_tat\": false,
\"has_tat_default\": true,
\"client_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"slug": "consequatur",
"is_active": true,
"has_tat": false,
"has_tat_default": true,
"client_id": 17
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Show the form for editing the specified resource.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"slug\": \"consequatur\",
\"is_active\": false,
\"has_tat\": false,
\"has_tat_default\": false,
\"client_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"slug": "consequatur",
"is_active": false,
"has_tat": false,
"has_tat_default": false,
"client_id": 17
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/lines-of-business/by-client/{client_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business/by-client/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/lines-of-business/by-client/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/banners
requires authentication
POST api/banners
requires authentication
GET api/banners/{id}
requires authentication
PATCH api/banners/{id}
requires authentication
DELETE api/banners/{id}
requires authentication
GET api/admin/banners/site
requires authentication
PUT api/admin/banners/site/{siteBanner_id}
requires authentication
GET api/global-settings
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/global-settings" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/global-settings"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/global-settings
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/global-settings" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"system_settings\": {
\"timeout_period\": 73,
\"disable_credentials_after_inactive_days\": 45,
\"invitation_email_expiry_hours\": 56
},
\"clinician_settings\": {
\"deactivate_clinician_no_assessment_days\": 17
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/global-settings"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"system_settings": {
"timeout_period": 73,
"disable_credentials_after_inactive_days": 45,
"invitation_email_expiry_hours": 56
},
"clinician_settings": {
"deactivate_clinician_no_assessment_days": 17
}
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/clinical-criteria
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinical-criteria" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"search\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinical-criteria"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"search": "vmqeopfuudtdsufvyvddq"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/clinical-criteria
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinical-criteria" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinical-criteria"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/clinical-criteria/{clinicalCriteria_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinical-criteria/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinical-criteria/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/clinical-criteria/{clinicalCriteria_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinical-criteria/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"is_active\": false
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinical-criteria/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"is_active": false
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/clinical-criteria/{clinicalCriteria_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinical-criteria/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinical-criteria/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/default-email-templates
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/default-email-templates" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/default-email-templates"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/default-email-templates/{defaultEmailTemplate_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/default-email-templates/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/default-email-templates/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/default-email-templates/{defaultEmailTemplate_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/default-email-templates/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"subject\": \"vmqeopfuudtdsufvyvddq\",
\"body\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/default-email-templates/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"subject": "vmqeopfuudtdsufvyvddq",
"body": "consequatur"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/default-email-templates/{defaultEmailTemplate_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/default-email-templates/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/default-email-templates/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/default-email-templates/{defaultEmailTemplate_id}/reset
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/default-email-templates/17/reset" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/default-email-templates/17/reset"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/system-rules
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"query\": \"consequatur\",
\"rule_family\": \"mqeopfuudtdsufvyvddqa\",
\"status\": \"draft\",
\"page\": 45,
\"per_page\": 13,
\"sort_by\": \"rule_family\",
\"sort_order\": \"desc\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"query": "consequatur",
"rule_family": "mqeopfuudtdsufvyvddqa",
"status": "draft",
"page": 45,
"per_page": 13,
"sort_by": "rule_family",
"sort_order": "desc"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/system-rules
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"rule_family\": \"vmqeopfuudtdsufvyvddq\",
\"title\": \"amniihfqcoynlazghdtqt\",
\"status\": \"draft\",
\"priority\": 56,
\"conditions\": [
{
\"field\": \"vmqeopfuudtdsufvyvddq\",
\"operator\": \"amniihfqcoynlazghdtqt\",
\"boolean\": \"or\",
\"source\": \"qxbajwbpilpmufinllwlo\",
\"path\": \"auydlsmsjuryvojcybzvr\"
}
],
\"actions\": [
{
\"type\": \"byickznkygloigmkwxphl\"
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"rule_family": "vmqeopfuudtdsufvyvddq",
"title": "amniihfqcoynlazghdtqt",
"status": "draft",
"priority": 56,
"conditions": [
{
"field": "vmqeopfuudtdsufvyvddq",
"operator": "amniihfqcoynlazghdtqt",
"boolean": "or",
"source": "qxbajwbpilpmufinllwlo",
"path": "auydlsmsjuryvojcybzvr"
}
],
"actions": [
{
"type": "byickznkygloigmkwxphl"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/system-rules/{systemRule_id}/duplicate
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules/17/duplicate" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules/17/duplicate"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/system-rules/{systemRule_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/system-rules/{systemRule_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"rule_family\": \"vmqeopfuudtdsufvyvddq\",
\"title\": \"amniihfqcoynlazghdtqt\",
\"status\": \"active\",
\"priority\": 56,
\"version\": 81,
\"conditions\": [
{
\"field\": \"bajwbpilpmufinllwloau\",
\"operator\": \"ydlsmsjuryvojcybzvrby\",
\"boolean\": \"or\",
\"source\": \"ickznkygloigmkwxphlva\",
\"path\": \"zjrcnfbaqywuxhgjjmzux\"
}
],
\"actions\": [
{
\"type\": \"jubqouzswiwxtrkimfcat\"
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"rule_family": "vmqeopfuudtdsufvyvddq",
"title": "amniihfqcoynlazghdtqt",
"status": "active",
"priority": 56,
"version": 81,
"conditions": [
{
"field": "bajwbpilpmufinllwloau",
"operator": "ydlsmsjuryvojcybzvrby",
"boolean": "or",
"source": "ickznkygloigmkwxphlva",
"path": "zjrcnfbaqywuxhgjjmzux"
}
],
"actions": [
{
"type": "jubqouzswiwxtrkimfcat"
}
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/system-rules/{systemRule_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/system-rules/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/alert-templates/available-tags
requires authentication
GET api/alert-templates
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alert-templates" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"filters\": {
\"logic\": \"AND\"
},
\"search\": \"consequatur\",
\"page\": 45,
\"per_page\": 16
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alert-templates"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"filters": {
"logic": "AND"
},
"search": "consequatur",
"page": 45,
"per_page": 16
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/alert-templates/search
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alert-templates/search" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"filters\": {
\"logic\": \"OR\"
},
\"search\": \"consequatur\",
\"page\": 45,
\"per_page\": 16
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alert-templates/search"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"filters": {
"logic": "OR"
},
"search": "consequatur",
"page": 45,
"per_page": 16
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/alert-templates
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alert-templates" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"default_message\": \"amniihfqcoynlazghdtqt\",
\"tls_secure_message\": \"qxbajwbpilpmufinllwlo\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alert-templates"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"default_message": "amniihfqcoynlazghdtqt",
"tls_secure_message": "qxbajwbpilpmufinllwlo"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/alert-templates/{alertTemplate_id}/render
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alert-templates/17/render" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"message_type\": \"default\",
\"output_format\": \"html\",
\"reference_id\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alert-templates/17/render"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"message_type": "default",
"output_format": "html",
"reference_id": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/alert-templates/{alertTemplate_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alert-templates/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alert-templates/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/admin/alert-templates
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/admin/alert-templates" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"filters\": {
\"logic\": \"OR\"
},
\"search\": \"consequatur\",
\"page\": 45,
\"per_page\": 16
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/admin/alert-templates"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"filters": {
"logic": "OR"
},
"search": "consequatur",
"page": 45,
"per_page": 16
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/admin/alert-templates/search
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/admin/alert-templates/search" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"filters\": {
\"logic\": \"OR\"
},
\"search\": \"consequatur\",
\"page\": 45,
\"per_page\": 16
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/admin/alert-templates/search"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"filters": {
"logic": "OR"
},
"search": "consequatur",
"page": 45,
"per_page": 16
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/admin/alert-templates/{alertTemplate_id}/render
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/admin/alert-templates/17/render" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"message_type\": \"default\",
\"output_format\": \"pdf\",
\"reference_id\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/admin/alert-templates/17/render"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"message_type": "default",
"output_format": "pdf",
"reference_id": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/admin/alert-templates/{alertTemplate_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/admin/alert-templates/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/admin/alert-templates/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/member-types" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type\": \"vmqeopfuudtdsufvyvddq\",
\"client_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/member-types"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type": "vmqeopfuudtdsufvyvddq",
"client_id": 17
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Show the form for creating a new resource.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/member-types" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type\": \"consequatur\",
\"client_id\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/member-types"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type": "consequatur",
"client_id": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/member-types/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/member-types/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Show the form for editing the specified resource.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/member-types/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/member-types/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type": "consequatur"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/member-types/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/member-types/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/activities
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/activities" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"search\": \"consequatur\",
\"start_date\": \"2026-05-14T17:42:32\",
\"end_date\": \"2026-05-14T17:42:32\",
\"entity\": [
\"consequatur\"
],
\"entity_id\": 17,
\"user_id\": 17,
\"causer_type_name\": \"consequatur\",
\"user_ids\": [
17
],
\"page\": 45,
\"per_page\": 16,
\"sort_by\": \"field\",
\"sort_order\": \"asc\",
\"subject_type_name\": \"consequatur\",
\"subject_id\": 17,
\"causer_id\": 17,
\"causer_ids\": \"consequatur\",
\"limit\": 13,
\"offset\": 56
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/activities"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"search": "consequatur",
"start_date": "2026-05-14T17:42:32",
"end_date": "2026-05-14T17:42:32",
"entity": [
"consequatur"
],
"entity_id": 17,
"user_id": 17,
"causer_type_name": "consequatur",
"user_ids": [
17
],
"page": 45,
"per_page": 16,
"sort_by": "field",
"sort_order": "asc",
"subject_type_name": "consequatur",
"subject_id": 17,
"causer_id": 17,
"causer_ids": "consequatur",
"limit": 13,
"offset": 56
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/members/gryphon-activities/{member_id}
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/gryphon-activities/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"message\": \"consequatur\",
\"priority\": \"consequatur\",
\"user\": {
\"id\": 17
},
\"visibility\": \"consequatur\",
\"parent\": {
\"id\": 17
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/gryphon-activities/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"message": "consequatur",
"priority": "consequatur",
"user": {
"id": 17
},
"visibility": "consequatur",
"parent": {
"id": 17
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/members/gryphon-activities/{member_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/gryphon-activities/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"search\": \"consequatur\",
\"start_date\": \"2026-05-14T17:42:32\",
\"end_date\": \"2026-05-14T17:42:32\",
\"created_at\": \"2026-05-14T17:42:32\",
\"activity_type\": \"consequatur\",
\"priority\": \"consequatur\",
\"visibility\": \"consequatur\",
\"user_id\": 17,
\"parent_id\": 17,
\"updated_at\": \"2026-05-14T17:42:32\",
\"page\": 45,
\"per_page\": 16,
\"limit\": 5,
\"offset\": 50,
\"sort\": \"consequatur\",
\"order\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/gryphon-activities/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"search": "consequatur",
"start_date": "2026-05-14T17:42:32",
"end_date": "2026-05-14T17:42:32",
"created_at": "2026-05-14T17:42:32",
"activity_type": "consequatur",
"priority": "consequatur",
"visibility": "consequatur",
"user_id": 17,
"parent_id": 17,
"updated_at": "2026-05-14T17:42:32",
"page": 45,
"per_page": 16,
"limit": 5,
"offset": 50,
"sort": "consequatur",
"order": "consequatur"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/members
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"first_name\": \"amniihfqcoynlazghdtqt\",
\"middle_initial\": \"q\",
\"last_name\": \"xbajwbpilpmufinllwloa\",
\"ssn\": \"2662\",
\"gender\": \"other\",
\"language\": \"Indonesian\",
\"date_of_birth\": \"2026-05-14T17:42:32\",
\"client\": {
\"member_type\": [],
\"lines_of_business\": [],
\"client_member_id\": \"uudtdsufvyvddqamniihf\"
},
\"safety_flag\": \"aggressive_behavior\",
\"notes\": \"consequatur\",
\"phones\": [
{
\"number\": \"mqeopfuudtdsufvyvddqa\",
\"type\": \"main\"
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"first_name": "amniihfqcoynlazghdtqt",
"middle_initial": "q",
"last_name": "xbajwbpilpmufinllwloa",
"ssn": "2662",
"gender": "other",
"language": "Indonesian",
"date_of_birth": "2026-05-14T17:42:32",
"client": {
"member_type": [],
"lines_of_business": [],
"client_member_id": "uudtdsufvyvddqamniihf"
},
"safety_flag": "aggressive_behavior",
"notes": "consequatur",
"phones": [
{
"number": "mqeopfuudtdsufvyvddqa",
"type": "main"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/members
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"search\": \"consequatur\",
\"client_id\": 17,
\"client_member_id\": \"consequatur\",
\"page\": 45,
\"per_page\": 16,
\"limit\": 5,
\"offset\": 50,
\"sort\": \"consequatur\",
\"order\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"search": "consequatur",
"client_id": 17,
"client_member_id": "consequatur",
"page": 45,
"per_page": 16,
"limit": 5,
"offset": 50,
"sort": "consequatur",
"order": "consequatur"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/members/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/members/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vmqeopfuudtdsufvyvddq\",
\"first_name\": \"amniihfqcoynlazghdtqt\",
\"middle_initial\": \"q\",
\"last_name\": \"xbajwbpilpmufinllwloa\",
\"gender\": \"other\",
\"ssn\": \"2662\",
\"language\": \"Vietnamese\",
\"date_of_birth\": \"2026-05-14T17:42:32\",
\"client\": {
\"member_type\": [],
\"lines_of_business\": [],
\"client_member_id\": \"uudtdsufvyvddqamniihf\"
},
\"safety_flag\": \"aggressive_dog\",
\"notes\": \"consequatur\",
\"phones\": [
{
\"number\": \"mqeopfuudtdsufvyvddqa\",
\"type\": \"main\"
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vmqeopfuudtdsufvyvddq",
"first_name": "amniihfqcoynlazghdtqt",
"middle_initial": "q",
"last_name": "xbajwbpilpmufinllwloa",
"gender": "other",
"ssn": "2662",
"language": "Vietnamese",
"date_of_birth": "2026-05-14T17:42:32",
"client": {
"member_type": [],
"lines_of_business": [],
"client_member_id": "uudtdsufvyvddqamniihf"
},
"safety_flag": "aggressive_dog",
"notes": "consequatur",
"phones": [
{
"number": "mqeopfuudtdsufvyvddqa",
"type": "main"
}
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/members/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Check for duplicates against a member, based on received parameters
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/check-duplicates" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"ssn\": \"vmqeopfuu\",
\"date_of_birth\": \"2026-05-14T17:42:32\",
\"first_name\": \"dtdsufvyvddqamniihfqc\",
\"last_name\": \"oynlazghdtqtqxbajwbpi\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/check-duplicates"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"ssn": "vmqeopfuu",
"date_of_birth": "2026-05-14T17:42:32",
"first_name": "dtdsufvyvddqamniihfqc",
"last_name": "oynlazghdtqtqxbajwbpi"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/members/{member_id}/phones
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/phones" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"number\": \"vmqeopfuudtdsufvyvddq\",
\"type\": \"mobile\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/phones"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"number": "vmqeopfuudtdsufvyvddq",
"type": "mobile"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/members/{member_id}/phones/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/phones/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"number\": \"vmqeopfuudtdsufvyvddq\",
\"type\": \"home\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/phones/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"number": "vmqeopfuudtdsufvyvddq",
"type": "home"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/members/{member_id}/phones/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/phones/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/phones/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/members/{member_id}/emails
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/emails" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"qkunze@example.com\",
\"type\": \"work\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/emails"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "qkunze@example.com",
"type": "work"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/members/{member_id}/emails/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/emails/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"qkunze@example.com\",
\"type\": \"secondary\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/emails/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "qkunze@example.com",
"type": "secondary"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/members/{member_id}/emails/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/emails/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/emails/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/members/{member_id}/addresses
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/addresses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"line_1\": \"vmqeopfuudtdsufvyvddq\",
\"line_2\": \"amniihfqcoynlazghdtqt\",
\"city\": \"qxbajwbpilpmufinllwlo\",
\"state\": \"auydlsmsjuryvojcybzvr\",
\"zip_code\": \"byickznkygloigmkwxphl\",
\"is_primary\": false,
\"type\": \"billing\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/addresses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"line_1": "vmqeopfuudtdsufvyvddq",
"line_2": "amniihfqcoynlazghdtqt",
"city": "qxbajwbpilpmufinllwlo",
"state": "auydlsmsjuryvojcybzvr",
"zip_code": "byickznkygloigmkwxphl",
"is_primary": false,
"type": "billing"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/members/{member_id}/addresses/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/addresses/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/members/1/addresses/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/gryphon-activities
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"search\": \"consequatur\",
\"start_date\": \"2026-05-14T17:42:32\",
\"end_date\": \"2026-05-14T17:42:32\",
\"created_at\": \"2026-05-14T17:42:32\",
\"activity_type\": \"consequatur\",
\"priority\": \"consequatur\",
\"visibility\": \"consequatur\",
\"user_id\": 17,
\"parent_id\": 17,
\"updated_at\": \"2026-05-14T17:42:32\",
\"page\": 45,
\"per_page\": 16,
\"limit\": 5,
\"offset\": 50,
\"sort\": \"consequatur\",
\"order\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"search": "consequatur",
"start_date": "2026-05-14T17:42:32",
"end_date": "2026-05-14T17:42:32",
"created_at": "2026-05-14T17:42:32",
"activity_type": "consequatur",
"priority": "consequatur",
"visibility": "consequatur",
"user_id": 17,
"parent_id": 17,
"updated_at": "2026-05-14T17:42:32",
"page": 45,
"per_page": 16,
"limit": 5,
"offset": 50,
"sort": "consequatur",
"order": "consequatur"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/gryphon-activities
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"message\": \"consequatur\",
\"priority\": \"consequatur\",
\"user\": {
\"id\": 17
},
\"visibility\": \"consequatur\",
\"parent\": {
\"id\": 17
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"message": "consequatur",
"priority": "consequatur",
"user": {
"id": 17
},
"visibility": "consequatur",
"parent": {
"id": 17
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/gryphon-activities/watchers/{gryphonActivity_id}
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities/watchers/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": 17,
\"notified_at\": \"2026-05-14T17:42:32\",
\"type\": \"consequatur\",
\"viewed_at\": \"2026-05-14T17:42:32\",
\"dismissed_at\": \"2026-05-14T17:42:32\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities/watchers/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": 17,
"notified_at": "2026-05-14T17:42:32",
"type": "consequatur",
"viewed_at": "2026-05-14T17:42:32",
"dismissed_at": "2026-05-14T17:42:32"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/gryphon-activities/watchers/{gryphonActivity_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities/watchers/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities/watchers/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/gryphon-activities/{gryphonActivity_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/gryphon-activities/{gryphonActivity_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"message\": \"consequatur\",
\"priority\": \"consequatur\",
\"visibility\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"message": "consequatur",
"priority": "consequatur",
"visibility": "consequatur"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/gryphon-activities/{gryphonActivity_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/gryphon-activities/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/watchers
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/watchers" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/watchers"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/watchers/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/watchers/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"notified_at\": \"2026-05-14T17:42:32\",
\"type\": \"consequatur\",
\"viewed_at\": \"2026-05-14T17:42:32\",
\"dismissed_at\": \"2026-05-14T17:42:32\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/watchers/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"notified_at": "2026-05-14T17:42:32",
"type": "consequatur",
"viewed_at": "2026-05-14T17:42:32",
"dismissed_at": "2026-05-14T17:42:32"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/watchers/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/watchers/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/watchers/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/alerts
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alerts" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alerts"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/alerts/count
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alerts/count" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alerts/count"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/alerts/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alerts/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"dismissed_at\": \"2026-05-14T17:42:32\",
\"viewed_at\": \"2026-05-14T17:42:32\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/alerts/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"dismissed_at": "2026-05-14T17:42:32",
"viewed_at": "2026-05-14T17:42:32"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/case-types
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-types" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\",
\"is_group\": true,
\"group\": [],
\"page\": 26,
\"per_page\": 6,
\"limit\": 16,
\"offset\": 8
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-types"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit.",
"is_group": true,
"group": [],
"page": 26,
"per_page": 6,
"limit": 16,
"offset": 8
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/case-types
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-types" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\",
\"is_group\": true,
\"group\": []
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-types"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit.",
"is_group": true,
"group": []
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/case-types/{caseType_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-types/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-types/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/case-types/{caseType_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-types/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\",
\"is_group\": false,
\"group\": [],
\"hcpcs\": [
[]
],
\"cpt\": [
[]
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-types/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit.",
"is_group": false,
"group": [],
"hcpcs": [
[]
],
"cpt": [
[]
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/case-types/{caseType}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-types/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-types/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/modifiers
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/modifiers" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/modifiers"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/modifiers
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/modifiers" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/modifiers"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/modifiers/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/modifiers/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/modifiers/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/modifiers/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/modifiers/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/modifiers/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit."
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/modifiers/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/modifiers/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/modifiers/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/case-type-options
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-options" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-options"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/case-type-options
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-options" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-options"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/case-type-options/{caseTypeOption_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-options/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-options/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/case-type-options/{caseTypeOption_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-options/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-options/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit."
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/case-type-options/{caseTypeOption_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-options/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-options/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/procedure-codes
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/procedure-codes" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/procedure-codes"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/procedure-codes/hcpcs
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/procedure-codes/hcpcs" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/procedure-codes/hcpcs"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/procedure-codes/cpt
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/procedure-codes/cpt" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/procedure-codes/cpt"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/procedure-codes/{procedureCode}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/procedure-codes/consequatur" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/procedure-codes/consequatur"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-sets" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-sets"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Show the form for creating a new resource.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-sets" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-sets"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-sets/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-sets/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-sets/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-sets/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit."
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-sets/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-type-sets/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classifications" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classifications"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Show the form for creating a new resource.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classifications" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classifications"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classifications/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classifications/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classifications/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classifications/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit."
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classifications/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classifications/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of all assessment responses.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-responses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-responses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created assessment response in storage.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-responses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"client_id\": 17,
\"member_id\": 17,
\"assessment\": 17,
\"case_id\": 17,
\"response\": []
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-responses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"client_id": 17,
"member_id": 17,
"assessment": 17,
"case_id": 17,
"response": []
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified assessment response.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-responses/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-responses/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified assessment response in storage.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-responses/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-responses/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PATCH",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified assessment response from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-responses/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-responses/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/case-classification-sets
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classification-sets" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\",
\"query\": \"consequatur\",
\"page\": 45,
\"per_page\": 16,
\"limit\": 5,
\"offset\": 50,
\"sort_by\": \"consequatur\",
\"sort_direction\": \"asc\",
\"with\": \"consequatur\",
\"with_count\": \"consequatur\",
\"with_trashed\": false,
\"only_trashed\": true
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classification-sets"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit.",
"query": "consequatur",
"page": 45,
"per_page": 16,
"limit": 5,
"offset": 50,
"sort_by": "consequatur",
"sort_direction": "asc",
"with": "consequatur",
"with_count": "consequatur",
"with_trashed": false,
"only_trashed": true
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/case-classification-sets
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classification-sets" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classification-sets"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/case-classification-sets/{caseClassificationSet_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classification-sets/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classification-sets/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/case-classification-sets/{caseClassificationSet_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classification-sets/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores molestias ipsam sit.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classification-sets/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores molestias ipsam sit."
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/case-classification-sets/{caseClassificationSet_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classification-sets/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-classification-sets/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-class-relationship" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-class-relationship"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/case-class-relationship
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-class-relationship" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"case_type\": {
\"id\": 17
},
\"case_type_set\": {
\"id\": 17
},
\"case_classification_set\": {
\"id\": 17
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-class-relationship"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"case_type": {
"id": 17
},
"case_type_set": {
"id": 17
},
"case_classification_set": {
"id": 17
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-class-relationship/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-class-relationship/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-class-relationship/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"case_type\": {
\"id\": 17
},
\"case_type_set\": {
\"id\": 17
},
\"case_classification_set\": {
\"id\": 17
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-class-relationship/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"case_type": {
"id": 17
},
"case_type_set": {
"id": 17
},
"case_classification_set": {
"id": 17
}
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-class-relationship/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-class-relationship/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/documents
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/documents
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "user_id=17"\
--form "document_label=consequatur"\
--form "title=consequatur"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "document_type=consequatur"\
--form "state=mq"\
--form "expiration_date=2026-05-14T17:42:32"\
--form "completion_date=2020-09-09"\
--form "signature_files=consequatur"\
--form "certification_type=consequatur"\
--form "documentable_type=consequatur"\
--form "documentable_id=17"\
--form "file=@/tmp/phpfWoYUs" const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('user_id', '17');
body.append('document_label', 'consequatur');
body.append('title', 'consequatur');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('document_type', 'consequatur');
body.append('state', 'mq');
body.append('expiration_date', '2026-05-14T17:42:32');
body.append('completion_date', '2020-09-09');
body.append('signature_files', 'consequatur');
body.append('certification_type', 'consequatur');
body.append('documentable_type', 'consequatur');
body.append('documentable_id', '17');
body.append('file', document.querySelector('input[name="file"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/documents/download/{document_id}/{filename}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents/download/1/consequatur" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents/download/1/consequatur"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/documents/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get change request history for a specific document.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents/1/change-history" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents/1/change-history"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/documents/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "document_label=consequatur"\
--form "document_type=consequatur"\
--form "state=mqeopfuud"\
--form "expiration_date=2026-05-14T17:42:32"\
--form "completion_date=2020-09-09"\
--form "signature_files=consequatur"\
--form "certification_type=consequatur"\
--form "title=consequatur"\
--form "description=Dolores dolorum amet iste laborum eius est dolor."\
--form "documentable_type=consequatur"\
--form "documentable_id=17"\
--form "file=@/tmp/php0teL1T" const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('document_label', 'consequatur');
body.append('document_type', 'consequatur');
body.append('state', 'mqeopfuud');
body.append('expiration_date', '2026-05-14T17:42:32');
body.append('completion_date', '2020-09-09');
body.append('signature_files', 'consequatur');
body.append('certification_type', 'consequatur');
body.append('title', 'consequatur');
body.append('description', 'Dolores dolorum amet iste laborum eius est dolor.');
body.append('documentable_type', 'consequatur');
body.append('documentable_id', '17');
body.append('file', document.querySelector('input[name="file"]').files[0]);
fetch(url, {
method: "PATCH",
headers,
body,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/documents/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/documents/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get map data for a specific address.
requires authentication
GET /api/google-maps/map-data?address=...
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/google-maps/map-data" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"address\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/google-maps/map-data"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"address": "consequatur"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get locations info based on addresses.
requires authentication
POST /api/google-maps/locations/addresses
Expected JSON: { "origin": "123 Main St, Anytown, USA", "locations": [ "456 Oak St, Othertown, USA", "789 Pine St, Thistown, USA" ], "sort_by": "distance" // optional, or "drive_time" }
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/google-maps/locations/addresses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"origin\": \"consequatur\",
\"locations\": [
\"consequatur\"
],
\"sort_by\": \"distance\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/google-maps/locations/addresses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"origin": "consequatur",
"locations": [
"consequatur"
],
"sort_by": "distance"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get locations info based on coordinates.
requires authentication
POST /api/google-maps/locations/coordinates
Expected JSON: { "origin": {"lat": 37.421, "lng": -122.083}, "locations": [ {"lat": 37.422, "lng": -122.084}, {"lat": 37.423, "lng": -122.085} ], "sort_by": "drive_time" // optional, or "distance" }
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/google-maps/locations/coordinates" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"origin\": {
\"lat\": 11613.31890586,
\"lng\": 11613.31890586
},
\"locations\": [
{
\"lat\": 11613.31890586,
\"lng\": 11613.31890586
}
],
\"sort_by\": \"drive_time\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/google-maps/locations/coordinates"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"origin": {
"lat": 11613.31890586,
"lng": 11613.31890586
},
"locations": [
{
"lat": 11613.31890586,
"lng": 11613.31890586
}
],
"sort_by": "drive_time"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Validate and "correct" an address.
requires authentication
This endpoint accepts a user‑provided address and returns:
- The original address provided.
- The fully validated/complete address (as returned by Google).
- Latitude, longitude.
- Both static and dynamic map URLs.
Endpoint: GET /api/google-maps/correct-address?address=...
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/google-maps/correct-address" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"address\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/google-maps/correct-address"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"address": "consequatur"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/cases/gryphon-activities/{caseModel_id}
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/gryphon-activities/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"message\": \"consequatur\",
\"priority\": \"consequatur\",
\"user\": {
\"id\": 17
},
\"visibility\": \"consequatur\",
\"parent\": {
\"id\": 17
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/gryphon-activities/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"message": "consequatur",
"priority": "consequatur",
"user": {
"id": 17
},
"visibility": "consequatur",
"parent": {
"id": 17
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/cases/gryphon-activities/{caseModel_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/gryphon-activities/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"search\": \"consequatur\",
\"start_date\": \"2026-05-14T17:42:32\",
\"end_date\": \"2026-05-14T17:42:32\",
\"created_at\": \"2026-05-14T17:42:32\",
\"activity_type\": \"consequatur\",
\"priority\": \"consequatur\",
\"visibility\": \"consequatur\",
\"user_id\": 17,
\"parent_id\": 17,
\"updated_at\": \"2026-05-14T17:42:32\",
\"page\": 45,
\"per_page\": 16,
\"limit\": 5,
\"offset\": 50,
\"sort\": \"consequatur\",
\"order\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/gryphon-activities/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"search": "consequatur",
"start_date": "2026-05-14T17:42:32",
"end_date": "2026-05-14T17:42:32",
"created_at": "2026-05-14T17:42:32",
"activity_type": "consequatur",
"priority": "consequatur",
"visibility": "consequatur",
"user_id": 17,
"parent_id": 17,
"updated_at": "2026-05-14T17:42:32",
"page": 45,
"per_page": 16,
"limit": 5,
"offset": 50,
"sort": "consequatur",
"order": "consequatur"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/cases
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"filters\": {
\"logic\": \"OR\"
},
\"query\": \"vmqeopfuudtdsufvyvddq\",
\"client_id\": 17,
\"member_id\": 17,
\"member\": {
\"name\": \"mqeopfuudtdsufvyvddqa\"
},
\"tag\": [],
\"due_date\": \"2026-05-14T17:42:32\",
\"received_date_start\": \"2026-05-14T17:42:32\",
\"received_date_end\": \"2026-05-14T17:42:32\",
\"due_date_start\": \"2026-05-14T17:42:32\",
\"due_date_end\": \"2026-05-14T17:42:32\",
\"appointment_scheduled_start\": \"2026-05-14T17:42:32\",
\"appointment_scheduled_end\": \"2107-06-13\",
\"safety_flag\": \"mqeopfuudtdsufvyvddqa\",
\"member_address\": \"mniihfqcoynlazghdtqtq\",
\"date_range\": [
\"2026-05-14T17:42:32\"
],
\"page\": 81,
\"per_page\": 2,
\"limit\": 1,
\"offset\": 33,
\"sort\": \"consequatur\",
\"order\": \"consequatur\",
\"status\": \"scheduled\",
\"search_by_tag\": \"mqeopfuudtdsufvyvddqa\",
\"case_types\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"filters": {
"logic": "OR"
},
"query": "vmqeopfuudtdsufvyvddq",
"client_id": 17,
"member_id": 17,
"member": {
"name": "mqeopfuudtdsufvyvddqa"
},
"tag": [],
"due_date": "2026-05-14T17:42:32",
"received_date_start": "2026-05-14T17:42:32",
"received_date_end": "2026-05-14T17:42:32",
"due_date_start": "2026-05-14T17:42:32",
"due_date_end": "2026-05-14T17:42:32",
"appointment_scheduled_start": "2026-05-14T17:42:32",
"appointment_scheduled_end": "2107-06-13",
"safety_flag": "mqeopfuudtdsufvyvddqa",
"member_address": "mniihfqcoynlazghdtqtq",
"date_range": [
"2026-05-14T17:42:32"
],
"page": 81,
"per_page": 2,
"limit": 1,
"offset": 33,
"sort": "consequatur",
"order": "consequatur",
"status": "scheduled",
"search_by_tag": "mqeopfuudtdsufvyvddqa",
"case_types": [
{
"id": 17
}
]
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/cases/search
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/search" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"filters\": {
\"logic\": \"AND\"
},
\"query\": \"vmqeopfuudtdsufvyvddq\",
\"client_id\": 17,
\"member_id\": 17,
\"member\": {
\"name\": \"mqeopfuudtdsufvyvddqa\"
},
\"tag\": [],
\"due_date\": \"2026-05-14T17:42:32\",
\"received_date_start\": \"2026-05-14T17:42:32\",
\"received_date_end\": \"2026-05-14T17:42:32\",
\"due_date_start\": \"2026-05-14T17:42:32\",
\"due_date_end\": \"2026-05-14T17:42:32\",
\"appointment_scheduled_start\": \"2026-05-14T17:42:32\",
\"appointment_scheduled_end\": \"2107-06-13\",
\"safety_flag\": \"mqeopfuudtdsufvyvddqa\",
\"member_address\": \"mniihfqcoynlazghdtqtq\",
\"date_range\": [
\"2026-05-14T17:42:32\"
],
\"page\": 81,
\"per_page\": 2,
\"limit\": 1,
\"offset\": 33,
\"sort\": \"consequatur\",
\"order\": \"consequatur\",
\"status\": \"draft\",
\"search_by_tag\": \"mqeopfuudtdsufvyvddqa\",
\"case_types\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/search"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"filters": {
"logic": "AND"
},
"query": "vmqeopfuudtdsufvyvddq",
"client_id": 17,
"member_id": 17,
"member": {
"name": "mqeopfuudtdsufvyvddqa"
},
"tag": [],
"due_date": "2026-05-14T17:42:32",
"received_date_start": "2026-05-14T17:42:32",
"received_date_end": "2026-05-14T17:42:32",
"due_date_start": "2026-05-14T17:42:32",
"due_date_end": "2026-05-14T17:42:32",
"appointment_scheduled_start": "2026-05-14T17:42:32",
"appointment_scheduled_end": "2107-06-13",
"safety_flag": "mqeopfuudtdsufvyvddqa",
"member_address": "mniihfqcoynlazghdtqtq",
"date_range": [
"2026-05-14T17:42:32"
],
"page": 81,
"per_page": 2,
"limit": 1,
"offset": 33,
"sort": "consequatur",
"order": "consequatur",
"status": "draft",
"search_by_tag": "mqeopfuudtdsufvyvddqa",
"case_types": [
{
"id": 17
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Export cases to CSV.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/export" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"filters\": {
\"logic\": \"AND\"
},
\"query\": \"vmqeopfuudtdsufvyvddq\",
\"client_id\": 17,
\"member_id\": 17,
\"member\": {
\"name\": \"mqeopfuudtdsufvyvddqa\"
},
\"tag\": [],
\"due_date\": \"2026-05-14T17:42:32\",
\"received_date_start\": \"2026-05-14T17:42:32\",
\"received_date_end\": \"2026-05-14T17:42:32\",
\"due_date_start\": \"2026-05-14T17:42:32\",
\"due_date_end\": \"2026-05-14T17:42:32\",
\"safety_flag\": \"mniihfqcoynlazghdtqtq\",
\"member_address\": \"xbajwbpilpmufinllwloa\",
\"status\": \"reviewing\",
\"sort_by\": \"uydlsmsjuryvojcybzvrb\",
\"sort_order\": \"desc\",
\"fields\": [
\"yickznkygloigmkwxphlv\"
],
\"field_order\": [
\"azjrcnfbaqywuxhgjjmzu\"
],
\"case_types\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/export"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"filters": {
"logic": "AND"
},
"query": "vmqeopfuudtdsufvyvddq",
"client_id": 17,
"member_id": 17,
"member": {
"name": "mqeopfuudtdsufvyvddqa"
},
"tag": [],
"due_date": "2026-05-14T17:42:32",
"received_date_start": "2026-05-14T17:42:32",
"received_date_end": "2026-05-14T17:42:32",
"due_date_start": "2026-05-14T17:42:32",
"due_date_end": "2026-05-14T17:42:32",
"safety_flag": "mniihfqcoynlazghdtqtq",
"member_address": "xbajwbpilpmufinllwloa",
"status": "reviewing",
"sort_by": "uydlsmsjuryvojcybzvrb",
"sort_order": "desc",
"fields": [
"yickznkygloigmkwxphlv"
],
"field_order": [
"azjrcnfbaqywuxhgjjmzu"
],
"case_types": [
{
"id": 17
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/cases
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"unique_id\": \"vmqeopfuudtdsufvyvddq\",
\"client_id\": 17,
\"member_id\": 17,
\"line_of_business_id\": 17,
\"case_class_id\": 17,
\"due_date\": \"2026-05-14T17:42:32\",
\"status\": \"paused\",
\"is_appeal\": true,
\"case_types\": [
{
\"id\": 17
}
],
\"diagnostic_codes\": [
{
\"id\": 17
}
],
\"documents\": [
{
\"id\": 17,
\"description\": \"Dolorum amet iste laborum eius est dolor.\",
\"title\": \"dtdsufvyvddqamniihfqc\"
}
],
\"tags\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"unique_id": "vmqeopfuudtdsufvyvddq",
"client_id": 17,
"member_id": 17,
"line_of_business_id": 17,
"case_class_id": 17,
"due_date": "2026-05-14T17:42:32",
"status": "paused",
"is_appeal": true,
"case_types": [
{
"id": 17
}
],
"diagnostic_codes": [
{
"id": 17
}
],
"documents": [
{
"id": 17,
"description": "Dolorum amet iste laborum eius est dolor.",
"title": "dtdsufvyvddqamniihfqc"
}
],
"tags": [
{
"id": 17
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/cases/{caseModel_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/cases/{caseModel_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"unique_id\": \"vmqeopfuudtdsufvyvddq\",
\"client_id\": 17,
\"member_id\": 17,
\"line_of_business_id\": 17,
\"case_class_id\": 17,
\"due_date\": \"2026-05-14T17:42:32\",
\"status\": \"assigned\",
\"is_appeal\": false,
\"case_types\": [
{
\"id\": 17
}
],
\"diagnostic_codes\": [
{
\"id\": 17
}
],
\"documents\": [
{
\"id\": 17,
\"description\": \"Dolorum amet iste laborum eius est dolor.\",
\"title\": \"dtdsufvyvddqamniihfqc\"
}
],
\"tags\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"unique_id": "vmqeopfuudtdsufvyvddq",
"client_id": 17,
"member_id": 17,
"line_of_business_id": 17,
"case_class_id": 17,
"due_date": "2026-05-14T17:42:32",
"status": "assigned",
"is_appeal": false,
"case_types": [
{
"id": 17
}
],
"diagnostic_codes": [
{
"id": 17
}
],
"documents": [
{
"id": 17,
"description": "Dolorum amet iste laborum eius est dolor.",
"title": "dtdsufvyvddqamniihfqc"
}
],
"tags": [
{
"id": 17
}
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/cases/{caseModel_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/cases/{caseModel_id}/documents
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/1/documents" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"unique_id\": \"vmqeopfuudtdsufvyvddq\",
\"client_id\": 17,
\"member_id\": 17,
\"line_of_business_id\": 17,
\"case_class_id\": 17,
\"due_date\": \"2026-05-14T17:42:32\",
\"status\": \"on_hold\",
\"is_appeal\": false,
\"case_types\": [
{
\"id\": 17
}
],
\"diagnostic_codes\": [
{
\"id\": 17
}
],
\"documents\": [
{
\"id\": 17,
\"description\": \"Dolorum amet iste laborum eius est dolor.\",
\"title\": \"dtdsufvyvddqamniihfqc\"
}
],
\"tags\": [
{
\"id\": 17
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/1/documents"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"unique_id": "vmqeopfuudtdsufvyvddq",
"client_id": 17,
"member_id": 17,
"line_of_business_id": 17,
"case_class_id": 17,
"due_date": "2026-05-14T17:42:32",
"status": "on_hold",
"is_appeal": false,
"case_types": [
{
"id": 17
}
],
"diagnostic_codes": [
{
"id": 17
}
],
"documents": [
{
"id": 17,
"description": "Dolorum amet iste laborum eius est dolor.",
"title": "dtdsufvyvddqamniihfqc"
}
],
"tags": [
{
"id": 17
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/cases/{caseModel_id}/documents/{document_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/1/documents/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/cases/1/documents/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Return all blackout dates for a specific clinician (including computed occurrences).
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts/clinician/consequatur" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts/clinician/consequatur"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"clinician_id\": \"consequatur\",
\"start_date\": \"2026-05-14T17:42:32\",
\"start_time\": \"17:42\",
\"end_date\": \"2107-06-13\",
\"end_time\": \"17:42\",
\"is_recurring\": \"1\",
\"recurrence_details\": {
\"pattern\": \"weekly_friday\",
\"custom\": {
\"repeat_interval_type\": \"month\",
\"repeat_interval_difference\": 45,
\"repeat_days\": [
\"Thu\"
],
\"repeat_dates\": [
1
]
},
\"ending_date\": \"2026-05-14T17:42:32\",
\"ending_ocurrences_count\": 17
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"clinician_id": "consequatur",
"start_date": "2026-05-14T17:42:32",
"start_time": "17:42",
"end_date": "2107-06-13",
"end_time": "17:42",
"is_recurring": "1",
"recurrence_details": {
"pattern": "weekly_friday",
"custom": {
"repeat_interval_type": "month",
"repeat_interval_difference": 45,
"repeat_days": [
"Thu"
],
"repeat_dates": [
1
]
},
"ending_date": "2026-05-14T17:42:32",
"ending_ocurrences_count": 17
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"start_date\": \"2026-05-14T17:42:32\",
\"start_time\": \"17:42\",
\"end_date\": \"2107-06-13\",
\"end_time\": \"17:42\",
\"is_recurring\": \"0\",
\"recurrence_details\": {
\"pattern\": \"custom\",
\"custom\": {
\"repeat_interval_type\": \"day\",
\"repeat_interval_difference\": 17,
\"repeat_days\": [
\"Thu\"
],
\"repeat_dates\": [
13
]
},
\"ending_date\": \"2026-05-14T17:42:32\",
\"ending_ocurrences_count\": 17
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"start_date": "2026-05-14T17:42:32",
"start_time": "17:42",
"end_date": "2107-06-13",
"end_time": "17:42",
"is_recurring": "0",
"recurrence_details": {
"pattern": "custom",
"custom": {
"repeat_interval_type": "day",
"repeat_interval_difference": 17,
"repeat_days": [
"Thu"
],
"repeat_dates": [
13
]
},
"ending_date": "2026-05-14T17:42:32",
"ending_ocurrences_count": 17
}
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinician-blackouts/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/invoices
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoices" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoices"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/invoices
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoices" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"invoice_number\": \"consequatur\",
\"member_id\": \"consequatur\",
\"client_id\": \"consequatur\",
\"invoice_date\": \"2026-05-14T17:42:32\",
\"due_date\": \"2107-06-13\",
\"status\": \"sent\",
\"created_by\": \"consequatur\",
\"sent_on\": \"2026-05-14T17:42:32\",
\"notes\": \"consequatur\",
\"quickbooks_ref\": \"consequatur\",
\"addresses\": [
{
\"type\": \"billing\",
\"line_1\": \"consequatur\",
\"line_2\": \"consequatur\",
\"city\": \"consequatur\",
\"state\": \"consequatur\",
\"zip_code\": \"consequatur\",
\"country\": \"consequatur\",
\"contact_name\": \"consequatur\",
\"contact_phone\": \"consequatur\",
\"contact_email\": \"carolyne.luettgen@example.org\"
}
],
\"line_items\": [
{
\"case_id\": \"consequatur\",
\"line_amount\": 45,
\"line_tax\": 56,
\"status\": \"closed\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoices"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"invoice_number": "consequatur",
"member_id": "consequatur",
"client_id": "consequatur",
"invoice_date": "2026-05-14T17:42:32",
"due_date": "2107-06-13",
"status": "sent",
"created_by": "consequatur",
"sent_on": "2026-05-14T17:42:32",
"notes": "consequatur",
"quickbooks_ref": "consequatur",
"addresses": [
{
"type": "billing",
"line_1": "consequatur",
"line_2": "consequatur",
"city": "consequatur",
"state": "consequatur",
"zip_code": "consequatur",
"country": "consequatur",
"contact_name": "consequatur",
"contact_phone": "consequatur",
"contact_email": "carolyne.luettgen@example.org"
}
],
"line_items": [
{
"case_id": "consequatur",
"line_amount": 45,
"line_tax": 56,
"status": "closed",
"description": "Dolores dolorum amet iste laborum eius est dolor."
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/invoices/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoices/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoices/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/invoices/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoices/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"invoice_number\": \"consequatur\",
\"invoice_date\": \"2026-05-14T17:42:32\",
\"due_date\": \"2107-06-13\",
\"status\": \"paid\",
\"sent_on\": \"2026-05-14T17:42:32\",
\"notes\": \"consequatur\",
\"quickbooks_ref\": \"consequatur\",
\"addresses\": [
{
\"type\": \"billing\",
\"line_1\": \"consequatur\",
\"line_2\": \"consequatur\",
\"city\": \"consequatur\",
\"state\": \"consequatur\",
\"zip_code\": \"consequatur\",
\"country\": \"consequatur\",
\"contact_name\": \"consequatur\",
\"contact_phone\": \"consequatur\",
\"contact_email\": \"carolyne.luettgen@example.org\"
}
],
\"line_items\": [
{
\"line_amount\": 19,
\"line_tax\": 70,
\"status\": \"paid\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoices/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"invoice_number": "consequatur",
"invoice_date": "2026-05-14T17:42:32",
"due_date": "2107-06-13",
"status": "paid",
"sent_on": "2026-05-14T17:42:32",
"notes": "consequatur",
"quickbooks_ref": "consequatur",
"addresses": [
{
"type": "billing",
"line_1": "consequatur",
"line_2": "consequatur",
"city": "consequatur",
"state": "consequatur",
"zip_code": "consequatur",
"country": "consequatur",
"contact_name": "consequatur",
"contact_phone": "consequatur",
"contact_email": "carolyne.luettgen@example.org"
}
],
"line_items": [
{
"line_amount": 19,
"line_tax": 70,
"status": "paid",
"description": "Dolores dolorum amet iste laborum eius est dolor."
}
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/invoices/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoices/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoices/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"case_id\": 17,
\"case\": {
\"id\": 17
},
\"assignee_type\": \"observer\",
\"status\": \"consequatur\",
\"assignee_id\": 17,
\"assignee\": {
\"id\": 17
},
\"completed_at\": \"2026-05-14\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"case_id": 17,
"case": {
"id": 17
},
"assignee_type": "observer",
"status": "consequatur",
"assignee_id": 17,
"assignee": {
"id": 17
},
"completed_at": "2026-05-14"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Search for case assignments.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments/search" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments/search"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the count of case assignments.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments/mine" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments/mine"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"assignee_type\": \"reviewer\",
\"status\": \"consequatur\",
\"assignee_id\": 17,
\"assignee\": {
\"id\": 17
},
\"completed_at\": \"2026-05-14\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"assignee_type": "reviewer",
"status": "consequatur",
"assignee_id": 17,
"assignee": {
"id": 17
},
"completed_at": "2026-05-14"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-assignments/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Show by case ID.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments/case/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments/case/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"case_id\": 17,
\"case\": {
\"id\": 17
},
\"appointment_date\": \"2026-05-14T17:42:32\",
\"appointment_time_start\": \"17:42\",
\"appointment_time_end\": \"17:42\",
\"status\": \"cancelled\",
\"comment\": \"mqeopfuudtdsufvyvddqa\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"case_id": 17,
"case": {
"id": 17
},
"appointment_date": "2026-05-14T17:42:32",
"appointment_time_start": "17:42",
"appointment_time_end": "17:42",
"status": "cancelled",
"comment": "mqeopfuudtdsufvyvddqa"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"appointment_date\": \"2026-05-14T17:42:32\",
\"appointment_time_start\": \"17:42\",
\"appointment_time_end\": \"17:42\",
\"comment\": \"vmqeopfuudtdsufvyvddq\",
\"status\": \"cancelled\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"appointment_date": "2026-05-14T17:42:32",
"appointment_time_start": "17:42",
"appointment_time_end": "17:42",
"comment": "vmqeopfuudtdsufvyvddq",
"status": "cancelled"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/case-appointments/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/contact-logs" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/contact-logs"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Show by case ID.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/contact-logs/case/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/contact-logs/case/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/contact-logs" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"case_id\": \"consequatur\",
\"appointment_scheduled\": true,
\"not_scheduled_reason\": \"consequatur\",
\"member_phone\": {
\"type\": \"consequatur\"
},
\"change_initiated_by\": \"consequatur\",
\"called_at\": \"2026-05-14T17:42:32\",
\"contacted_by\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/contact-logs"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"case_id": "consequatur",
"appointment_scheduled": true,
"not_scheduled_reason": "consequatur",
"member_phone": {
"type": "consequatur"
},
"change_initiated_by": "consequatur",
"called_at": "2026-05-14T17:42:32",
"contacted_by": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/contact-logs/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/contact-logs/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/contact-logs/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/contact-logs/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/invoice-expenses
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoice-expenses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoice-expenses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/invoice-expenses
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoice-expenses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": \"consequatur\",
\"case_id\": \"consequatur\",
\"amount\": 45,
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoice-expenses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": "consequatur",
"case_id": "consequatur",
"amount": 45,
"description": "Dolores dolorum amet iste laborum eius est dolor."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/invoice-expenses/{expense_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoice-expenses/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoice-expenses/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/invoice-expenses/{expense_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoice-expenses/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": \"consequatur\",
\"case_id\": \"consequatur\",
\"amount\": 45,
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoice-expenses/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": "consequatur",
"case_id": "consequatur",
"amount": 45,
"description": "Dolores dolorum amet iste laborum eius est dolor."
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/invoice-expenses/{expense_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoice-expenses/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/invoice-expenses/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/expenses/types
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/types" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/types"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/expenses/searchable-fields
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/searchable-fields" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/searchable-fields"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/expenses/sortable-fields
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/sortable-fields" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/sortable-fields"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get available status filters for current user.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/available-statuses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/available-statuses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/expenses
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"keyword\": \"vmqeopfuudtdsufvyvddq\",
\"search\": \"amniihfqcoynlazghdtqt\",
\"query\": \"qxbajwbpilpmufinllwlo\",
\"status\": \"submitted\",
\"case_ids\": [
17
],
\"expense_type\": \"consequatur\",
\"user_id\": 17,
\"incurred_at_from\": \"2026-05-14T17:42:32\",
\"incurred_at_to\": \"2107-06-13\",
\"paid_at_from\": \"2026-05-14T17:42:32\",
\"paid_at_to\": \"2107-06-13\",
\"created_at_from\": \"2026-05-14T17:42:32\",
\"created_at_to\": \"2107-06-13\",
\"amount_min\": 45,
\"amount_max\": 56,
\"sort_by\": \"incurred_at\",
\"sort_order\": \"desc\",
\"per_page\": 5,
\"page\": 51
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"keyword": "vmqeopfuudtdsufvyvddq",
"search": "amniihfqcoynlazghdtqt",
"query": "qxbajwbpilpmufinllwlo",
"status": "submitted",
"case_ids": [
17
],
"expense_type": "consequatur",
"user_id": 17,
"incurred_at_from": "2026-05-14T17:42:32",
"incurred_at_to": "2107-06-13",
"paid_at_from": "2026-05-14T17:42:32",
"paid_at_to": "2107-06-13",
"created_at_from": "2026-05-14T17:42:32",
"created_at_to": "2107-06-13",
"amount_min": 45,
"amount_max": 56,
"sort_by": "incurred_at",
"sort_order": "desc",
"per_page": 5,
"page": 51
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/expenses
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"case_ids\": [
17
],
\"amount\": 11613.31890586,
\"category\": \"consequatur\",
\"description\": \"Dolorum amet iste laborum eius est dolor.\",
\"expense_type\": \"ppe\",
\"total_time\": 4,
\"document_id\": 17,
\"user_id\": 17,
\"unit_rate\": 45,
\"incurred_at\": \"2020-09-09\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"case_ids": [
17
],
"amount": 11613.31890586,
"category": "consequatur",
"description": "Dolorum amet iste laborum eius est dolor.",
"expense_type": "ppe",
"total_time": 4,
"document_id": 17,
"user_id": 17,
"unit_rate": 45,
"incurred_at": "2020-09-09"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Export expenses to CSV.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/export" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"keyword\": \"vmqeopfuudtdsufvyvddq\",
\"search\": \"amniihfqcoynlazghdtqt\",
\"query\": \"qxbajwbpilpmufinllwlo\",
\"status\": \"canceled\",
\"case_ids\": [
17
],
\"expense_type\": \"consequatur\",
\"user_id\": 17,
\"incurred_at_from\": \"2026-05-14T17:42:32\",
\"incurred_at_to\": \"2107-06-13\",
\"paid_at_from\": \"2026-05-14T17:42:32\",
\"paid_at_to\": \"2107-06-13\",
\"created_at_from\": \"2026-05-14T17:42:32\",
\"created_at_to\": \"2107-06-13\",
\"amount_min\": 45,
\"amount_max\": 56,
\"sort_by\": \"updated_at\",
\"sort_order\": \"desc\",
\"per_page\": 5,
\"page\": 51,
\"fields\": [
\"pfuudtdsufvyvddqamnii\"
],
\"field_order\": [
\"hfqcoynlazghdtqtqxbaj\"
],
\"format\": \"csv\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/export"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"keyword": "vmqeopfuudtdsufvyvddq",
"search": "amniihfqcoynlazghdtqt",
"query": "qxbajwbpilpmufinllwlo",
"status": "canceled",
"case_ids": [
17
],
"expense_type": "consequatur",
"user_id": 17,
"incurred_at_from": "2026-05-14T17:42:32",
"incurred_at_to": "2107-06-13",
"paid_at_from": "2026-05-14T17:42:32",
"paid_at_to": "2107-06-13",
"created_at_from": "2026-05-14T17:42:32",
"created_at_to": "2107-06-13",
"amount_min": 45,
"amount_max": 56,
"sort_by": "updated_at",
"sort_order": "desc",
"per_page": 5,
"page": 51,
"fields": [
"pfuudtdsufvyvddqamnii"
],
"field_order": [
"hfqcoynlazghdtqtqxbaj"
],
"format": "csv"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/expenses/bulk/approve
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/bulk/approve" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"expense_ids\": [
11613.31890586
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/bulk/approve"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"expense_ids": [
11613.31890586
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/expenses/bulk/deny
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/bulk/deny" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"expense_ids\": [
11613.31890586
],
\"reason\": \"opfuudtdsufvyvddqamni\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/bulk/deny"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"expense_ids": [
11613.31890586
],
"reason": "opfuudtdsufvyvddqamni"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/expenses/{expense_id}/mark-as-paid
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17/mark-as-paid" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17/mark-as-paid"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/expenses/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get valid status transitions for an expense.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17/valid-transitions" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17/valid-transitions"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/expenses/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"case_ids\": [
17
],
\"amount\": 11613.31890586,
\"status\": \"approved\",
\"description\": \"Laborum eius est dolor dolores minus voluptatem.\",
\"category\": \"consequatur\",
\"expense_type\": \"meetings\",
\"total_time\": 12,
\"document_id\": 17,
\"unit_rate\": 45,
\"incurred_at\": \"2020-09-09\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"case_ids": [
17
],
"amount": 11613.31890586,
"status": "approved",
"description": "Laborum eius est dolor dolores minus voluptatem.",
"category": "consequatur",
"expense_type": "meetings",
"total_time": 12,
"document_id": 17,
"unit_rate": 45,
"incurred_at": "2020-09-09"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Change expense status using state machine.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17/status" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"status\": \"sent\",
\"note\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17/status"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"status": "sent",
"note": "vmqeopfuudtdsufvyvddq"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Cancel an expense.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17/cancel" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"reason\": \"vmqeopfuudtdsufvyvddq\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17/cancel"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"reason": "vmqeopfuudtdsufvyvddq"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/expenses/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expenses/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/expense-config/transitions
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/transitions" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/transitions"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/expense-config/transitions/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/transitions/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/transitions/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/expense-config/transitions
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/transitions" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from_status\": \"completed\",
\"to_status\": \"denied\",
\"is_terminal\": true,
\"requires_note\": true,
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"is_active\": true
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/transitions"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from_status": "completed",
"to_status": "denied",
"is_terminal": true,
"requires_note": true,
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"is_active": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/expense-config/transitions/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/transitions/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"from_status\": \"submitted\",
\"to_status\": \"completed\",
\"is_terminal\": false,
\"requires_note\": true,
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"is_active\": true
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/transitions/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"from_status": "submitted",
"to_status": "completed",
"is_terminal": false,
"requires_note": true,
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"is_active": true
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/expense-config/transitions/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/transitions/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/transitions/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/expense-config/visibility
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/visibility" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/visibility"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/expense-config/visibility/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/visibility/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/visibility/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/expense-config/visibility
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/visibility" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"role_id\": 17,
\"actual_status\": \"completed\",
\"displayed_status\": \"submitted\",
\"is_active\": false
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/visibility"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"role_id": 17,
"actual_status": "completed",
"displayed_status": "submitted",
"is_active": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/expense-config/visibility/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/visibility/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"role_id\": 17,
\"actual_status\": \"approved\",
\"displayed_status\": \"completed\",
\"is_active\": true
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/visibility/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"role_id": 17,
"actual_status": "approved",
"displayed_status": "completed",
"is_active": true
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/expense-config/visibility/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/visibility/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/visibility/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/expense-config/permissions
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/permissions" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/permissions"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/expense-config/permissions/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/permissions/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/permissions/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/expense-config/permissions
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/permissions" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"role_id\": 17,
\"from_status\": \"canceled\",
\"to_status\": \"submitted\",
\"can_transition\": true,
\"is_active\": true
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/permissions"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"role_id": 17,
"from_status": "canceled",
"to_status": "submitted",
"can_transition": true,
"is_active": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/expense-config/permissions/{id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/permissions/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"role_id\": 17,
\"from_status\": \"completed\",
\"to_status\": \"investigating\",
\"can_transition\": true,
\"is_active\": true
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/permissions/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"role_id": 17,
"from_status": "completed",
"to_status": "investigating",
"can_transition": true,
"is_active": true
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/expense-config/permissions/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/permissions/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/expense-config/permissions/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/client-rates
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-rates" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"client_id\": \"consequatur\",
\"rate_type\": \"no_show\",
\"rate\": 11613.31890586
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-rates"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"client_id": "consequatur",
"rate_type": "no_show",
"rate": 11613.31890586
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/client-rates/search
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-rates/search" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"client_id\": 17,
\"rate_type\": \"standard_rate\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-rates/search"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"client_id": 17,
"rate_type": "standard_rate"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/client-rates/{clientRate_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-rates/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-rates/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/client-rates/{clientRate_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-rates/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"rate_type\": \"no_show\",
\"rate\": 11613.31890586
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-rates/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"rate_type": "no_show",
"rate": 11613.31890586
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/client-rates/{clientRate_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-rates/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/client-rates/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of conclusions.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/conclusions" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/conclusions"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created conclusion in storage.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/conclusions" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": \"consequatur\",
\"assessment_id\": \"consequatur\",
\"conclusion_text\": \"consequatur\",
\"user\": [],
\"assessment\": []
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/conclusions"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": "consequatur",
"assessment_id": "consequatur",
"conclusion_text": "consequatur",
"user": [],
"assessment": []
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified conclusion.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/conclusions/consequatur" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/conclusions/consequatur"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified conclusion in storage.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/conclusions/consequatur" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"conclusion_text\": \"consequatur\",
\"user\": [],
\"assessment\": []
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/conclusions/consequatur"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"conclusion_text": "consequatur",
"user": [],
"assessment": []
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified conclusion from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/conclusions/consequatur" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/conclusions/consequatur"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Legacy endpoint for creating payment requests
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/pay-request" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"relay_access_token\": \"consequatur\",
\"action\": \"wm_createPaymentRequest\",
\"payer_id\": \"consequatur\",
\"resource_id\": \"consequatur\",
\"resource_email\": \"carolyne.luettgen@example.org\",
\"resource_custom_field_id\": \"consequatur\",
\"resource_custom_field_value\": \"consequatur\",
\"create_payment_request\": {
\"currency\": \"mqe\",
\"memo\": \"consequatur\",
\"reference\": \"consequatur\",
\"invoice_creation_date\": \"2026-05-14T17:42:32\",
\"order_items\": [
{
\"type\": \"WORK\",
\"title\": \"consequatur\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\",
\"quantity\": 13,
\"amount\": 66,
\"date\": \"2026-05-14T17:42:32\"
}
],
\"submit_payments\": true
}
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/pay-request"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"relay_access_token": "consequatur",
"action": "wm_createPaymentRequest",
"payer_id": "consequatur",
"resource_id": "consequatur",
"resource_email": "carolyne.luettgen@example.org",
"resource_custom_field_id": "consequatur",
"resource_custom_field_value": "consequatur",
"create_payment_request": {
"currency": "mqe",
"memo": "consequatur",
"reference": "consequatur",
"invoice_creation_date": "2026-05-14T17:42:32",
"order_items": [
{
"type": "WORK",
"title": "consequatur",
"description": "Dolores dolorum amet iste laborum eius est dolor.",
"quantity": 13,
"amount": 66,
"date": "2026-05-14T17:42:32"
}
],
"submit_payments": true
}
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Get linked WorkMarket account status
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/linked-account" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/linked-account"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": 17
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Link or update WorkMarket account
requires authentication
Example request:
curl --request PUT \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/linked-account" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"workmarket_id\": \"lILn\",
\"user_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/linked-account"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"workmarket_id": "lILn",
"user_id": 17
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Unlink WorkMarket account
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/linked-account" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/linked-account"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": 17
};
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Submit a single expense to WorkMarket for payment
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/expenses/17/submit" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/expenses/17/submit"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Submit multiple expenses to WorkMarket in batch
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/expenses/batch-submit" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"expense_ids\": [
17
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/expenses/batch-submit"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"expense_ids": [
17
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Check payment status for a specific expense
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/expenses/17/status" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/expenses/17/status"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Sync payment statuses for pending expenses
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/sync-payment-statuses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": 17,
\"force\": true
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/workmarket/sync-payment-statuses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": 17,
"force": true
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/tags
requires authentication
POST api/tags
requires authentication
GET api/tags/{id}
requires authentication
PATCH api/tags/{id}
requires authentication
DELETE api/tags/{id}
requires authentication
GET api/assessments
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/assessments
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"case_type_id\": \"consequatur\",
\"assessment_sections\": [
{
\"id\": \"consequatur\"
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"case_type_id": "consequatur",
"assessment_sections": [
{
"id": "consequatur"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/assessments/{id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PUT api/assessments/{id}
requires authentication
Example request:
curl --request PUT \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"case_type_id\": \"consequatur\",
\"assessment_sections\": [
{
\"id\": \"consequatur\"
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"case_type_id": "consequatur",
"assessment_sections": [
{
"id": "consequatur"
}
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/assessments/{assessment_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"case_type_id\": \"consequatur\",
\"assessment_sections\": [
{
\"id\": \"consequatur\"
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"case_type_id": "consequatur",
"assessment_sections": [
{
"id": "consequatur"
}
]
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/assessments/{id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessments/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/assessment-sections
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-sections" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-sections"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/assessment-sections
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-sections" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-sections"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor."
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/assessment-sections/{assessmentSection_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-sections/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-sections/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/assessment-sections/{assessmentSection_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-sections/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"description\": \"Dolores dolorum amet iste laborum eius est dolor.\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-sections/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"description": "Dolores dolorum amet iste laborum eius est dolor."
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/assessment-sections/{assessmentSection_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-sections/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/assessment-sections/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/section-rules
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/section-rules" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"assessment_section_id\": 17,
\"per_page\": 13
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/section-rules"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"assessment_section_id": 17,
"per_page": 13
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/section-rules
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/section-rules" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"assessment_section_id\": 17,
\"state\": \"mq\",
\"case_type_id\": 17,
\"client_id\": 17,
\"sort_order\": 45,
\"is_required\": false,
\"is_active\": false
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/section-rules"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"assessment_section_id": 17,
"state": "mq",
"case_type_id": 17,
"client_id": 17,
"sort_order": 45,
"is_required": false,
"is_active": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/section-rules/{sectionRule_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/section-rules/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/section-rules/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/section-rules/{sectionRule_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/section-rules/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"assessment_section_id\": 17,
\"state\": \"mq\",
\"case_type_id\": 17,
\"client_id\": 17,
\"sort_order\": 45,
\"is_required\": true,
\"is_active\": true
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/section-rules/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"assessment_section_id": 17,
"state": "mq",
"case_type_id": 17,
"client_id": 17,
"sort_order": 45,
"is_required": true,
"is_active": true
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/section-rules/{sectionRule_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/section-rules/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/section-rules/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of the resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/tag-categories" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/tag-categories"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store a newly created resource in storage.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/tag-categories" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"category_name\": \"vmqeopfuudtdsufvyvddq\",
\"category_tag_type\": \"amniihfqcoynlazghdtqt\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/tag-categories"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"category_name": "vmqeopfuudtdsufvyvddq",
"category_tag_type": "amniihfqcoynlazghdtqt"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified resource.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/tag-categories/consequatur" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/tag-categories/consequatur"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update the specified resource in storage.
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/tag-categories/consequatur" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"category_name\": \"vmqeopfuudtdsufvyvddq\",
\"category_tag_type\": \"amniihfqcoynlazghdtqt\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/tag-categories/consequatur"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"category_name": "vmqeopfuudtdsufvyvddq",
"category_tag_type": "amniihfqcoynlazghdtqt"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Remove the specified resource from storage.
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/tag-categories/consequatur" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/tag-categories/consequatur"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/saved-filters
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/saved-filters" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/saved-filters"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/saved-filters
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/saved-filters" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"context\": \"users\",
\"filter_data\": []
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/saved-filters"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"context": "users",
"filter_data": []
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/saved-filters/{savedFilter_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/saved-filters/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/saved-filters/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
PATCH api/saved-filters/{savedFilter_id}
requires authentication
Example request:
curl --request PATCH \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/saved-filters/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"vmqeopfuudtdsufvyvddq\",
\"filter_data\": []
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/saved-filters/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "vmqeopfuudtdsufvyvddq",
"filter_data": []
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE api/saved-filters/{savedFilter_id}
requires authentication
Example request:
curl --request DELETE \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/saved-filters/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/saved-filters/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/filter-fields
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/filter-fields" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"context\": \"cases\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/filter-fields"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"context": "cases"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/filter-fields/{filterField_id}
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/filter-fields/1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/filter-fields/1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
POST api/clinicians/{clinician_id}/trainings/required
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinicians/1/trainings/required" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"role_id\": 17,
\"trainings\": [
{
\"training_id\": 17,
\"due_date\": \"2026-05-14T17:42:32\"
}
]
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/clinicians/1/trainings/required"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"role_id": 17,
"trainings": [
{
"training_id": 17,
"due_date": "2026-05-14T17:42:32"
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of active training material categories.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/training-material-categories" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/training-material-categories"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a listing of training tag types with optional search.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/training-tag-types" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/training-tag-types"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/trainings/catalog
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/trainings/catalog" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"role_id\": 17,
\"clinician_id\": 17
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/trainings/catalog"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"role_id": 17,
"clinician_id": 17
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display a paginated listing of bills for the authenticated user.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/bills" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"year\": 21,
\"search\": \"mqeopfuudtdsufvyvddqa\",
\"sort_by\": \"created_at\",
\"sort_order\": \"asc\",
\"per_page\": 13,
\"page\": 46
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/bills"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"year": 21,
"search": "mqeopfuudtdsufvyvddqa",
"sort_by": "created_at",
"sort_order": "asc",
"per_page": 13,
"page": 46
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Display the specified bill with full breakdown details.
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/bills/17" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/bills/17"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/v1
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/v1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/v1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/v1
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/v1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/v1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/v1
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/v1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/v1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET api/v1
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/v1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/api/v1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-gryphon-app-version: unknown
access-control-allow-origin: *
{
"message": "Unauthenticated.",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET auth/status
requires authentication
Example request:
curl --request GET \
--get "http://gryphon-central-stage.gryphon-tenant-api.test:3002/auth/status" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/auth/status"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 59
x-gryphon-app-version: unknown
{
"auth_service": "sanctum",
"app_version": "unknown"
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Attempt to authenticate a new session.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/auth/login" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"qkunze@example.com\",
\"password\": \"O[2UZ5ij-e\\/dl4m{o,\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/auth/login"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "qkunze@example.com",
"password": "O[2UZ5ij-e\/dl4m{o,"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Send a reset link to the given user.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/auth/forgot-password" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/auth/forgot-password"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Reset the user's password.
requires authentication
Example request:
curl --request POST \
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/auth/reset-password" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"token\": \"consequatur\",
\"password\": \"consequatur\"
}"
const url = new URL(
"http://gryphon-central-stage.gryphon-tenant-api.test:3002/auth/reset-password"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"token": "consequatur",
"password": "consequatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.