Creed group-chat API

The group-chat API from Creed — 3 operation(s) for group-chat.

Operations 3

POST /api/group-chat/provision Provision Group Chat #
GET /api/group-chat/me Get My Identity #
POST /api/group-chat/members Get Group Chat Members #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/creed-group-chat-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

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 Specification

creed-group-chat-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Creed achievements Group Chat API
  description: Creed API - Christian AI Chatbot
  version: 1.0.0
servers:
- url: https://api.usecreed.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: group-chat
paths:
  /api/group-chat/provision:
    post:
      tags:
      - group-chat
      summary: Provision Group Chat
      description: "Idempotently provisions:\n  1. A Mattermost team for the user's church (if missing)\n  2. A Mattermost user for the caller (if missing)\n  3. Membership in the team\n  4. A fresh PAT for the user\n\nReturns the credentials the RN client needs to connect via WebSocket."
      operationId: provision_group_chat_api_group_chat_provision_post
      security:
      - HTTPBearer: []
      parameters:
      - name: x-user-id
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: X-User-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProvisionResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/group-chat/me:
    get:
      tags:
      - group-chat
      summary: Get My Identity
      description: Returns existing mappings without creating anything. Useful for debugging.
      operationId: get_my_identity_api_group_chat_me_get
      security:
      - HTTPBearer: []
      parameters:
      - name: x-user-id
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: X-User-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IdentityResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/group-chat/members:
    post:
      tags:
      - group-chat
      summary: Get Group Chat Members
      description: 'Resolve a batch of Mattermost user ids to app-side profile fields

        (first_name, last_name, profile_picture). Used by the client to render

        avatars/names without leaking other PII.'
      operationId: get_group_chat_members_api_group_chat_members_post
      security:
      - HTTPBearer: []
      parameters:
      - name: x-user-id
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: X-User-Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MembersRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MembersResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MemberProfile:
      properties:
        mm_user_id:
          type: string
          title: Mm User Id
        first_name:
          anyOf:
          - type: string
          - type: 'null'
          title: First Name
        last_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Last Name
        profile_picture:
          anyOf:
          - type: string
          - type: 'null'
          title: Profile Picture
      type: object
      required:
      - mm_user_id
      - first_name
      - last_name
      - profile_picture
      title: MemberProfile
    ProvisionResponse:
      properties:
        mattermost_url:
          type: string
          title: Mattermost Url
        team_id:
          type: string
          title: Team Id
        channel_id:
          type: string
          title: Channel Id
        user_id:
          type: string
          title: User Id
        access_token:
          type: string
          title: Access Token
      type: object
      required:
      - mattermost_url
      - team_id
      - channel_id
      - user_id
      - access_token
      title: ProvisionResponse
    MembersRequest:
      properties:
        mm_user_ids:
          items:
            type: string
          type: array
          title: Mm User Ids
      type: object
      required:
      - mm_user_ids
      title: MembersRequest
    IdentityResponse:
      properties:
        mattermost_url:
          type: string
          title: Mattermost Url
        team_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Team Id
        channel_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Channel Id
        user_id:
          anyOf:
          - type: string
          - type: 'null'
          title: User Id
        has_identity:
          type: boolean
          title: Has Identity
      type: object
      required:
      - mattermost_url
      - team_id
      - channel_id
      - user_id
      - has_identity
      title: IdentityResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    MembersResponse:
      properties:
        members:
          items:
            $ref: '#/components/schemas/MemberProfile'
          type: array
          title: Members
      type: object
      required:
      - members
      title: MembersResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Supabase JWT token