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

# Accept an invite for the authenticated user

> Accept a pending organization invite for the current user.



## OpenAPI

````yaml https://api.arklow.io/swagger/ui/json post /v1/self/invites/{invite_id}/accept
openapi: 3.1.0
info:
  title: Arklow
  description: Arklow's API
  version: 0.1.0
servers:
  - url: https://api.arklow.io
    description: Production
  - url: http://localhost:3123
    description: Local development
security:
  - apiKey: []
tags:
  - name: actions
  - name: api_keys
  - name: billing
  - name: config
  - name: credentials
  - name: destinations
  - name: invites
  - name: members
  - name: metrics
  - name: notifications
  - name: orgs
  - name: rules
  - name: sources
  - name: users
  - name: ingress
externalDocs:
  url: https://api.arklow.io/swagger/ui
paths:
  /v1/self/invites/{invite_id}/accept:
    post:
      tags:
        - invites
      summary: Accept an invite for the authenticated user
      description: Accept a pending organization invite for the current user.
      operationId: post_v1_self_invites_by_invite_id_accept
      parameters:
        - schema:
            type: string
            pattern: ^[0-9]+$
          in: path
          name: invite_id
          required: true
          description: Invite identifier
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                  - errors
                properties:
                  data:
                    anyOf:
                      - type: object
                        required:
                          - id
                          - org_id
                          - user_id
                          - permissions
                        properties:
                          id:
                            type: string
                          org_id:
                            type: string
                          user_id:
                            type: string
                          email:
                            type: string
                          permissions:
                            type: array
                            items:
                              anyOf:
                                - type: string
                                  enum:
                                    - owner
                                - type: string
                                  enum:
                                    - admin
                                - type: string
                                  enum:
                                    - viewer
                                - type: string
                                  enum:
                                    - billing
                                - type: string
                                  enum:
                                    - actions:runs:inputs
                      - type: 'null'
                  errors:
                    anyOf:
                      - type: array
                        items:
                          type: object
                          required:
                            - code
                            - message
                          properties:
                            code:
                              type: string
                            message:
                              type: string
                      - type: 'null'
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-arklow-auth
      in: header

````