Stack Auth Contact Channels API
The Contact Channels API from Stack Auth — 4 operation(s) for contact channels.
The Contact Channels API from Stack Auth — 4 operation(s) for contact channels.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/stack-auth-contact-channels-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Stack REST Auth Contact Channels API
version: 1.0.0
description: 'Stack Auth is an open-source authentication and user management platform.
This is a curated subset of the Stack Auth Server REST API published at
https://api.stack-auth.com/api/v1, derived from the public OpenAPI document
referenced from https://docs.stack-auth.com/rest-api/overview.
'
contact:
name: Stack Auth
url: https://stack-auth.com
servers:
- url: https://api.stack-auth.com/api/v1
description: Stack Auth REST API
security:
- StackProjectId: []
StackAccessType: []
StackPublishableClientKey: []
StackSecretServerKey: []
tags:
- name: Contact Channels
paths:
/contact-channels:
get:
summary: List contact channels
responses:
'200':
description: List of contact channels
tags:
- Contact Channels
post:
summary: Create a contact channel
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'201':
description: Contact channel created
tags:
- Contact Channels
/contact-channels/verify:
post:
summary: Send a contact channel verification request
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'200':
description: Verification sent
tags:
- Contact Channels
/contact-channels/verify/check-code:
post:
summary: Check a contact channel verification code
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'200':
description: Verification result
tags:
- Contact Channels
/contact-channels/{user_id}/{contact_channel_id}:
parameters:
- in: path
name: user_id
required: true
schema:
type: string
- in: path
name: contact_channel_id
required: true
schema:
type: string
get:
summary: Get a contact channel
responses:
'200':
description: Contact channel
tags:
- Contact Channels
patch:
summary: Update a contact channel
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'200':
description: Updated contact channel
tags:
- Contact Channels
delete:
summary: Delete a contact channel
responses:
'204':
description: Deleted
tags:
- Contact Channels
components:
securitySchemes:
StackProjectId:
type: apiKey
in: header
name: X-Stack-Project-Id
description: Project identifier for the Stack Auth project the request targets.
StackAccessType:
type: apiKey
in: header
name: X-Stack-Access-Type
description: One of "client", "server", or "admin".
StackPublishableClientKey:
type: apiKey
in: header
name: X-Stack-Publishable-Client-Key
description: Publishable client key used for client access type.
StackSecretServerKey:
type: apiKey
in: header
name: X-Stack-Secret-Server-Key
description: Secret server key used for server access type.
StackSuperSecretAdminKey:
type: apiKey
in: header
name: X-Stack-Super-Secret-Admin-Key
description: Admin key used for admin access type.