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

# Get partner identity and accessible partnerships



## OpenAPI

````yaml /partner-openapi.json get /partner/me
openapi: 3.1.0
info:
  title: Journeybee Partner API
  description: Partner-facing REST API for the Journeybee PRM platform.
  version: 1.0.0
servers:
  - url: https://api.journeybee.io/v1
    description: Production
security:
  - apiKey: []
tags:
  - name: Partner
    description: Partner-facing API endpoints — used only by the partner spec
paths:
  /partner/me:
    get:
      tags:
        - Partner
      summary: Get partner identity and accessible partnerships
      operationId: getPartnerMe
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  user:
                    type: object
                    properties:
                      id:
                        type: string
                      uuid:
                        type: string
                      email:
                        type: string
                      first_name:
                        anyOf:
                          - type: string
                          - type: 'null'
                      last_name:
                        anyOf:
                          - type: string
                          - type: 'null'
                    required:
                      - id
                      - uuid
                      - email
                      - first_name
                      - last_name
                    additionalProperties: false
                  permissions:
                    type: object
                    properties:
                      read:
                        type: boolean
                      write:
                        type: boolean
                    required:
                      - read
                      - write
                    additionalProperties: false
                  modules:
                    type: object
                    properties:
                      partner_api:
                        type: boolean
                    required:
                      - partner_api
                    additionalProperties: false
                  partnerships:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        uuid:
                          type: string
                        name:
                          anyOf:
                            - type: string
                            - type: 'null'
                        partner_type:
                          type: string
                          enum:
                            - referral
                            - reseller
                            - distributor
                        status:
                          type: string
                          enum:
                            - invited
                            - not-invited
                            - accepted
                            - archived
                      required:
                        - id
                        - uuid
                        - name
                        - partner_type
                        - status
                      additionalProperties: false
                required:
                  - user
                  - permissions
                  - modules
                  - partnerships
                additionalProperties: false
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: API key authentication. Use "Bearer <api_key>" or "Api-Key <api_key>".

````