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
This API is not authenticated.
Endpoints
POST api/v1/auth/register
Example request:
curl --request POST \
"http://localhost/api/v1/auth/register" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"b\",
\"email\": \"zbailey@example.net\",
\"role\": \"architecto\",
\"password\": \"]|{+-0pBNvYg\",
\"social\": false
}"
const url = new URL(
"http://localhost/api/v1/auth/register"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "b",
"email": "zbailey@example.net",
"role": "architecto",
"password": "]|{+-0pBNvYg",
"social": 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.
POST api/v1/auth/login
Example request:
curl --request POST \
"http://localhost/api/v1/auth/login" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"gbailey@example.net\",
\"role\": \"architecto\",
\"password\": \"]|{+-0pBNvYg\",
\"social\": false
}"
const url = new URL(
"http://localhost/api/v1/auth/login"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "gbailey@example.net",
"role": "architecto",
"password": "]|{+-0pBNvYg",
"social": 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.
POST api/v1/auth/reset-password
Example request:
curl --request POST \
"http://localhost/api/v1/auth/reset-password" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"gbailey@example.net\",
\"password\": \"+-0pBNvYgxwmi\\/#iw\",
\"token\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/auth/reset-password"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "gbailey@example.net",
"password": "+-0pBNvYgxwmi\/#iw",
"token": "architecto"
};
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/v1/auth/forgot-password
Example request:
curl --request POST \
"http://localhost/api/v1/auth/forgot-password" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"gbailey@example.net\"
}"
const url = new URL(
"http://localhost/api/v1/auth/forgot-password"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "gbailey@example.net"
};
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/v1/auth/update-password
Example request:
curl --request POST \
"http://localhost/api/v1/auth/update-password" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/auth/update-password"
);
const headers = {
"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/v1/profile
Example request:
curl --request GET \
--get "http://localhost/api/v1/profile" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/profile"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/profile/update
Example request:
curl --request GET \
--get "http://localhost/api/v1/profile/update" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/profile/update"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/sessions
Example request:
curl --request GET \
--get "http://localhost/api/v1/sessions" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/sessions"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/sessions/add
Example request:
curl --request POST \
"http://localhost/api/v1/sessions/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"scheduled_at\": \"2051-11-04\",
\"title\": \"architecto\",
\"description\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/sessions/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"scheduled_at": "2051-11-04",
"title": "architecto",
"description": "architecto"
};
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.
PUT api/v1/sessions/update/{coachingSession_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/sessions/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"scheduled_at\": \"2051-11-04\",
\"title\": \"architecto\",
\"description\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/sessions/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"scheduled_at": "2051-11-04",
"title": "architecto",
"description": "architecto"
};
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.
GET api/v1/sessions/{coachingSession_id}
Example request:
curl --request GET \
--get "http://localhost/api/v1/sessions/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/sessions/16"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/sessions/delete/{coachingSession_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/sessions/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/sessions/delete/16"
);
const headers = {
"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/v1/sessions/notes/add
Example request:
curl --request POST \
"http://localhost/api/v1/sessions/notes/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"session_id\": \"architecto\",
\"notes\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/sessions/notes/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"session_id": "architecto",
"notes": "architecto"
};
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.
PUT api/v1/sessions/notes/update/{sessionNote_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/sessions/notes/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"note\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/sessions/notes/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"note": "architecto"
};
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.
DELETE api/v1/sessions/notes/delete/{sessionNote_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/sessions/notes/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/sessions/notes/delete/16"
);
const headers = {
"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/v1/sessions/resources/add
Example request:
curl --request POST \
"http://localhost/api/v1/sessions/resources/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"session_id\": \"architecto\",
\"name\": \"architecto\",
\"description\": \"architecto\",
\"file\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/sessions/resources/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"session_id": "architecto",
"name": "architecto",
"description": "architecto",
"file": "architecto"
};
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.
PUT api/v1/sessions/resources/update/{sessionResource_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/sessions/resources/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"architecto\",
\"description\": \"architecto\",
\"file\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/sessions/resources/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "architecto",
"description": "architecto",
"file": "architecto"
};
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.
DELETE api/v1/sessions/resources/delete/{sessionResource_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/sessions/resources/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/sessions/resources/delete/16"
);
const headers = {
"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/v1/sessions/members/add
Example request:
curl --request POST \
"http://localhost/api/v1/sessions/members/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"session_id\": \"architecto\",
\"client_id\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/sessions/members/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"session_id": "architecto",
"client_id": "architecto"
};
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/v1/sessions/members/delete/{sessionMember_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/sessions/members/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/sessions/members/delete/16"
);
const headers = {
"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/v1/tasks
Example request:
curl --request GET \
--get "http://localhost/api/v1/tasks" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/tasks"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/tasks/add
Example request:
curl --request POST \
"http://localhost/api/v1/tasks/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/tasks/add"
);
const headers = {
"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.
PUT api/v1/tasks/update/{task_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/tasks/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"b\",
\"description\": \"Eius et animi quos velit et.\",
\"priority\": \"urgent-important\",
\"due_date\": \"2025-10-11T09:44:20\",
\"status\": \"in_progress\"
}"
const url = new URL(
"http://localhost/api/v1/tasks/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "b",
"description": "Eius et animi quos velit et.",
"priority": "urgent-important",
"due_date": "2025-10-11T09:44:20",
"status": "in_progress"
};
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.
DELETE api/v1/tasks/delete/{task_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/tasks/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/tasks/delete/16"
);
const headers = {
"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/v1/communities
Example request:
curl --request GET \
--get "http://localhost/api/v1/communities" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/communities"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/communities/{community_id}
Example request:
curl --request GET \
--get "http://localhost/api/v1/communities/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/communities/16"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/communities/add
Example request:
curl --request POST \
"http://localhost/api/v1/communities/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"architecto\",
\"description\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/communities/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "architecto",
"description": "architecto"
};
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.
PUT api/v1/communities/update/{community_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/communities/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"architecto\",
\"description\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/communities/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "architecto",
"description": "architecto"
};
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.
DELETE api/v1/communities/delete
Example request:
curl --request DELETE \
"http://localhost/api/v1/communities/delete" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/communities/delete"
);
const headers = {
"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/v1/communities/posts/add
Example request:
curl --request POST \
"http://localhost/api/v1/communities/posts/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"content\": \"architecto\",
\"community_id\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/communities/posts/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"content": "architecto",
"community_id": "architecto"
};
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.
PUT api/v1/communities/posts/update/{post_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/communities/posts/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"content\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/communities/posts/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"content": "architecto"
};
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.
DELETE api/v1/communities/posts/delete/{post_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/communities/posts/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/communities/posts/delete/16"
);
const headers = {
"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/v1/communities/posts/comment/add
Example request:
curl --request POST \
"http://localhost/api/v1/communities/posts/comment/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"content\": \"architecto\",
\"post_id\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/communities/posts/comment/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"content": "architecto",
"post_id": "architecto"
};
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.
PUT api/v1/communities/posts/comment/update/{comment_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/communities/posts/comment/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"content\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/communities/posts/comment/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"content": "architecto"
};
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.
DELETE api/v1/communities/posts/comment/delete/{comment_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/communities/posts/comment/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/communities/posts/comment/delete/16"
);
const headers = {
"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/v1/daily-habits/today
Example request:
curl --request GET \
--get "http://localhost/api/v1/daily-habits/today" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/daily-habits/today"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/daily-habits/add
Example request:
curl --request POST \
"http://localhost/api/v1/daily-habits/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/daily-habits/add"
);
const headers = {
"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.
PUT api/v1/daily-habits/update
Example request:
curl --request PUT \
"http://localhost/api/v1/daily-habits/update" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"id\": \"architecto\",
\"exercise\": 2,
\"productivity\": 1,
\"mood\": 2,
\"sleep\": 1,
\"nutrition\": 1
}"
const url = new URL(
"http://localhost/api/v1/daily-habits/update"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"id": "architecto",
"exercise": 2,
"productivity": 1,
"mood": 2,
"sleep": 1,
"nutrition": 1
};
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.
GET api/v1/daily-habits/history
Example request:
curl --request GET \
--get "http://localhost/api/v1/daily-habits/history" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/daily-habits/history"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/whole-life-scores
Example request:
curl --request GET \
--get "http://localhost/api/v1/whole-life-scores" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/whole-life-scores"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/whole-life-scores/add
Example request:
curl --request POST \
"http://localhost/api/v1/whole-life-scores/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/whole-life-scores/add"
);
const headers = {
"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.
PUT api/v1/whole-life-scores/update
Example request:
curl --request PUT \
"http://localhost/api/v1/whole-life-scores/update" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/whole-life-scores/update"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
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/v1/journals
Example request:
curl --request GET \
--get "http://localhost/api/v1/journals" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/journals"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/journals/add
Example request:
curl --request POST \
"http://localhost/api/v1/journals/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"b\",
\"content\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/journals/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "b",
"content": "architecto"
};
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.
PUT api/v1/journals/update/{journal_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/journals/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"b\",
\"content\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/journals/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "b",
"content": "architecto"
};
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.
DELETE api/v1/journals/delete/{journal_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/journals/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/journals/delete/16"
);
const headers = {
"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/v1/events
Example request:
curl --request GET \
--get "http://localhost/api/v1/events" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/events"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/events/add
Example request:
curl --request POST \
"http://localhost/api/v1/events/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type\": \"architecto\",
\"date\": \"architecto\",
\"time\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/events/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type": "architecto",
"date": "architecto",
"time": "architecto"
};
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.
PUT api/v1/events/update/{event_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/events/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type\": \"architecto\",
\"date\": \"architecto\",
\"time\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/events/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type": "architecto",
"date": "architecto",
"time": "architecto"
};
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.
DELETE api/v1/events/delete/{event_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/events/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/events/delete/16"
);
const headers = {
"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/v1/clients
Example request:
curl --request GET \
--get "http://localhost/api/v1/clients" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/clients"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/programs
Example request:
curl --request GET \
--get "http://localhost/api/v1/programs" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/programs"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/programs/add
Example request:
curl --request POST \
"http://localhost/api/v1/programs/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"b\",
\"description\": \"Eius et animi quos velit et.\"
}"
const url = new URL(
"http://localhost/api/v1/programs/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "b",
"description": "Eius et animi quos velit et."
};
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.
PUT api/v1/programs/update/{program_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/programs/update/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"b\",
\"description\": \"Eius et animi quos velit et.\"
}"
const url = new URL(
"http://localhost/api/v1/programs/update/1"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "b",
"description": "Eius et animi quos velit et."
};
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.
DELETE api/v1/programs/delete/{program_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/programs/delete/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/programs/delete/1"
);
const headers = {
"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/v1/programs/{program_id}
Example request:
curl --request GET \
--get "http://localhost/api/v1/programs/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/programs/1"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/programs/cohort/add
Example request:
curl --request POST \
"http://localhost/api/v1/programs/cohort/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"program_id\": \"architecto\",
\"name\": \"n\",
\"start_date\": \"2025-10-11T09:44:20\",
\"end_date\": \"2051-11-04\"
}"
const url = new URL(
"http://localhost/api/v1/programs/cohort/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"program_id": "architecto",
"name": "n",
"start_date": "2025-10-11T09:44:20",
"end_date": "2051-11-04"
};
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.
PUT api/v1/programs/cohort/update/{cohort_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/programs/cohort/update/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"program_id\": \"architecto\",
\"name\": \"n\",
\"start_date\": \"2025-10-11T09:44:20\",
\"end_date\": \"2051-11-04\"
}"
const url = new URL(
"http://localhost/api/v1/programs/cohort/update/1"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"program_id": "architecto",
"name": "n",
"start_date": "2025-10-11T09:44:20",
"end_date": "2051-11-04"
};
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.
DELETE api/v1/programs/cohort/delete/{cohort_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/programs/cohort/delete/1" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/programs/cohort/delete/1"
);
const headers = {
"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/v1/programs/cohort-member/add
Example request:
curl --request POST \
"http://localhost/api/v1/programs/cohort-member/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"cohort_id\": \"architecto\",
\"client_id\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/programs/cohort-member/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"cohort_id": "architecto",
"client_id": "architecto"
};
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/v1/programs/cohort-member/delete/{cohortMember_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/programs/cohort-member/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/programs/cohort-member/delete/16"
);
const headers = {
"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/v1/programs/unit/add
Example request:
curl --request POST \
"http://localhost/api/v1/programs/unit/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"program_id\": \"architecto\",
\"name\": \"n\",
\"description\": \"Eius et animi quos velit et.\"
}"
const url = new URL(
"http://localhost/api/v1/programs/unit/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"program_id": "architecto",
"name": "n",
"description": "Eius et animi quos velit et."
};
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.
PUT api/v1/programs/unit/update/{unit_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/programs/unit/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"program_id\": \"architecto\",
\"name\": \"n\",
\"description\": \"Eius et animi quos velit et.\"
}"
const url = new URL(
"http://localhost/api/v1/programs/unit/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"program_id": "architecto",
"name": "n",
"description": "Eius et animi quos velit et."
};
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.
DELETE api/v1/programs/unit/delete/{unit_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/programs/unit/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/programs/unit/delete/16"
);
const headers = {
"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/v1/programs/unit-resource/add
Example request:
curl --request POST \
"http://localhost/api/v1/programs/unit-resource/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"unit_id\": \"architecto\",
\"name\": \"n\",
\"description\": \"Eius et animi quos velit et.\"
}"
const url = new URL(
"http://localhost/api/v1/programs/unit-resource/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"unit_id": "architecto",
"name": "n",
"description": "Eius et animi quos velit et."
};
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.
PUT api/v1/programs/unit-resource/update/{unitResource_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/programs/unit-resource/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"unit_id\": \"architecto\",
\"name\": \"n\",
\"description\": \"Eius et animi quos velit et.\",
\"added_by\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/programs/unit-resource/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"unit_id": "architecto",
"name": "n",
"description": "Eius et animi quos velit et.",
"added_by": "architecto"
};
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.
DELETE api/v1/programs/unit-resource/delete/{unitResource_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/programs/unit-resource/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/programs/unit-resource/delete/16"
);
const headers = {
"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/v1/cohorts
Example request:
curl --request GET \
--get "http://localhost/api/v1/cohorts" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/cohorts"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/coaches
Example request:
curl --request GET \
--get "http://localhost/api/v1/coaches" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/coaches"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/fireteams
Example request:
curl --request GET \
--get "http://localhost/api/v1/fireteams" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/fireteams/add
Example request:
curl --request POST \
"http://localhost/api/v1/fireteams/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"cohort_id\": \"architecto\",
\"title\": \"architecto\",
\"description\": \"Eius et animi quos velit et.\",
\"date\": \"2025-10-11T09:44:20\",
\"time\": \"architecto\",
\"link\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/fireteams/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"cohort_id": "architecto",
"title": "architecto",
"description": "Eius et animi quos velit et.",
"date": "2025-10-11T09:44:20",
"time": "architecto",
"link": "architecto"
};
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.
PUT api/v1/fireteams/update/{fireteam}
Example request:
curl --request PUT \
"http://localhost/api/v1/fireteams/update/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"cohort_id\": \"architecto\",
\"title\": \"architecto\",
\"description\": \"Eius et animi quos velit et.\",
\"date\": \"2025-10-11T09:44:20\",
\"time\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/fireteams/update/architecto"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"cohort_id": "architecto",
"title": "architecto",
"description": "Eius et animi quos velit et.",
"date": "2025-10-11T09:44:20",
"time": "architecto"
};
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.
DELETE api/v1/fireteams/delete/{fireteam}
Example request:
curl --request DELETE \
"http://localhost/api/v1/fireteams/delete/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/delete/architecto"
);
const headers = {
"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/v1/fireteams/{fireteam}
Example request:
curl --request GET \
--get "http://localhost/api/v1/fireteams/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/16"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/fireteams/member/add
Example request:
curl --request POST \
"http://localhost/api/v1/fireteams/member/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"client_id\": \"architecto\",
\"fire_team_id\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/fireteams/member/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"client_id": "architecto",
"fire_team_id": "architecto"
};
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/v1/fireteams/member/delete/{fireteamMember}
Example request:
curl --request DELETE \
"http://localhost/api/v1/fireteams/member/delete/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/member/delete/architecto"
);
const headers = {
"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/v1/fireteams/experience/add
Example request:
curl --request POST \
"http://localhost/api/v1/fireteams/experience/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"fire_team_id\": \"architecto\",
\"title\": \"architecto\",
\"experience\": \"architecto\",
\"link\": \"architecto\",
\"status\": \"architecto\",
\"report\": \"architecto\",
\"summary\": \"architecto\",
\"admin\": 16
}"
const url = new URL(
"http://localhost/api/v1/fireteams/experience/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"fire_team_id": "architecto",
"title": "architecto",
"experience": "architecto",
"link": "architecto",
"status": "architecto",
"report": "architecto",
"summary": "architecto",
"admin": 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.
DELETE api/v1/fireteams/experience/delete/{fireTeamExperience_id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/fireteams/experience/delete/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/experience/delete/16"
);
const headers = {
"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/v1/fireteams/experiences/{fireTeam}
Example request:
curl --request GET \
--get "http://localhost/api/v1/fireteams/experiences/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/experiences/architecto"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/fireteams/experience/update/{fireTeamExperience_id}
Example request:
curl --request PUT \
"http://localhost/api/v1/fireteams/experience/update/16" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"architecto\",
\"experience\": \"architecto\",
\"link\": \"architecto\",
\"status\": \"architecto\",
\"report\": \"architecto\",
\"summary\": \"architecto\",
\"admin\": 16
}"
const url = new URL(
"http://localhost/api/v1/fireteams/experience/update/16"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "architecto",
"experience": "architecto",
"link": "architecto",
"status": "architecto",
"report": "architecto",
"summary": "architecto",
"admin": 16
};
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.
GET api/v1/fireteams/members/{fireTeam}
Example request:
curl --request GET \
--get "http://localhost/api/v1/fireteams/members/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/members/architecto"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/v1/fireteams/experience/agenda-step/add
Example request:
curl --request POST \
"http://localhost/api/v1/fireteams/experience/agenda-step/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"architecto\",
\"duration\": \"architecto\",
\"fire_team_experience_id\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/fireteams/experience/agenda-step/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "architecto",
"duration": "architecto",
"fire_team_experience_id": "architecto"
};
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/v1/fireteams/experience/agenda-step/delete/{agendaStep}
Example request:
curl --request DELETE \
"http://localhost/api/v1/fireteams/experience/agenda-step/delete/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/experience/agenda-step/delete/architecto"
);
const headers = {
"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/v1/fireteams/experience/exhibit/add
Example request:
curl --request POST \
"http://localhost/api/v1/fireteams/experience/exhibit/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"fire_team_experience_id\": \"architecto\",
\"name\": \"architecto\",
\"type\": \"architecto\",
\"link\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/fireteams/experience/exhibit/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"fire_team_experience_id": "architecto",
"name": "architecto",
"type": "architecto",
"link": "architecto"
};
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/v1/fireteams/experience/exhibit/delete/{agendaStep}
Example request:
curl --request DELETE \
"http://localhost/api/v1/fireteams/experience/exhibit/delete/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/experience/exhibit/delete/architecto"
);
const headers = {
"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/v1/fireteams/objectives/add
Example request:
curl --request POST \
"http://localhost/api/v1/fireteams/objectives/add" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"fire_team_experience_id\": \"architecto\",
\"objective\": \"architecto\"
}"
const url = new URL(
"http://localhost/api/v1/fireteams/objectives/add"
);
const headers = {
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"fire_team_experience_id": "architecto",
"objective": "architecto"
};
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/v1/fireteams/objectives/delete/{id}
Example request:
curl --request DELETE \
"http://localhost/api/v1/fireteams/objectives/delete/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/objectives/delete/architecto"
);
const headers = {
"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/v1/fireteams/recordings/add
Example request:
curl --request POST \
"http://localhost/api/v1/fireteams/recordings/add" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "fire_team_id=architecto"\
--form "file=@/tmp/php42m3qpl457mq63vs9ph" const url = new URL(
"http://localhost/api/v1/fireteams/recordings/add"
);
const headers = {
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('fire_team_id', 'architecto');
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/v1/fireteams/recordings/{fireTeamId}
Example request:
curl --request GET \
--get "http://localhost/api/v1/fireteams/recordings/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/recordings/architecto"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/fireteams/recordings/summary/admin/{recordingId}
Example request:
curl --request GET \
--get "http://localhost/api/v1/fireteams/recordings/summary/admin/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/recordings/summary/admin/architecto"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/fireteams/recordings/summary/coach/{recordingId}
Example request:
curl --request GET \
--get "http://localhost/api/v1/fireteams/recordings/summary/coach/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/recordings/summary/coach/architecto"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer 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/fireteams/recordings/summary/client/{recordingId}/{clientId}
Example request:
curl --request GET \
--get "http://localhost/api/v1/fireteams/recordings/summary/client/architecto/architecto" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"http://localhost/api/v1/fireteams/recordings/summary/client/architecto/architecto"
);
const headers = {
"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
vary: Origin
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.