+ Access Tokens
+
+ Access tokens are used to allow external, 3rd party tools to perform specific actions on your Owncast server.
+ They should be kept secure and never included in client code, instead they should be kept on a server that you control.
+
+
+ Read more about how to use these tokens at _some documentation here_.
+
+
+
+
+
+
+ );
+}
diff --git a/web/utils/apis.ts b/web/utils/apis.ts
index a859080c8..7d9f62edd 100644
--- a/web/utils/apis.ts
+++ b/web/utils/apis.ts
@@ -40,6 +40,15 @@ export const CHAT_HISTORY = `${API_LOCATION}chat/messages`;
// Get chat history
export const UPDATE_CHAT_MESSGAE_VIZ = `${NEXT_PUBLIC_API_HOST}api/admin/chat/updatemessagevisibility`;
+// Get all access tokens
+export const ACCESS_TOKENS = `${API_LOCATION}accesstokens`;
+
+// Delete a single access token
+export const DELETE_ACCESS_TOKEN = `${API_LOCATION}deleteaccesstoken`;
+
+// Create a new access token
+export const CREATE_ACCESS_TOKEN = `${API_LOCATION}createaccesstoken`;
+
// Get webhooks
export const WEBHOOKS = `${API_LOCATION}webhooks`;