> ## Documentation Index
> Fetch the complete documentation index at: https://docs.join.tl/llms.txt
> Use this file to discover all available pages before exploring further.

# Get REST protected-resource metadata



## OpenAPI

````yaml /specs/openapi/jointl-api-v1.openapi.yaml get /.well-known/oauth-protected-resource/api/v1
openapi: 3.1.2
info:
  title: Jointl REST API and OAuth
  version: 1.0.0
  summary: Supported public HTTP contract for Jointl third-party connections.
  description: >-
    HTTP contract for Jointl REST operations, OAuth, and Zapier subscription and
    action endpoints. Jointl does not provide a public sandbox.
  termsOfService: https://join.tl/legal/terms-of-service
  contact:
    name: Jointl Support
    url: https://join.tl
servers:
  - url: https://api.join.tl
    description: Jointl production API
security: []
tags:
  - name: OAuth
    description: OAuth 2.0 and OpenID Connect endpoints.
  - name: Discovery
    description: OAuth resource and issuer discovery.
  - name: Operations
    description: Permission-filtered read operations.
  - name: Actions
    description: Prepare, human approval, and confirmation.
  - name: Zapier
    description: Endpoints restricted to the approved Jointl Zapier app.
paths:
  /.well-known/oauth-protected-resource/api/v1:
    get:
      tags:
        - Discovery
      summary: Get REST protected-resource metadata
      operationId: getRestProtectedResourceMetadata
      responses:
        '200':
          description: Protected-resource metadata.
          headers:
            X-Request-Id:
              $ref: '#/components/headers/RequestId'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProtectedResourceMetadata'
      security: []
components:
  headers:
    RequestId:
      description: Request correlation identifier.
      schema:
        type: string
  schemas:
    ProtectedResourceMetadata:
      type: object
      properties:
        resource:
          type: string
          const: https://api.join.tl/api/v1
        resource_name:
          type: string
          const: Jointl API
        authorization_servers:
          type: array
          items:
            type: string
        bearer_methods_supported:
          type: array
          items:
            type: string
        scopes_supported:
          type: array
          items:
            type: string
      required:
        - resource
        - resource_name
        - authorization_servers
        - bearer_methods_supported
        - scopes_supported

````