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

# Execute admin invites

> Execute admin invites for a company or team. This is used to execute admin invites for a company or team.



## OpenAPI

````yaml /api-reference/openapi.yaml put /v2/invites/manager
openapi: 3.0.3
info:
  title: Rise
  description: Web3-enabled payroll and compliance for the modern workforce
  version: 2.0.0
servers:
  - url: https://b2b-api.dev-riseworks.io
    description: Development
  - url: https://integrations-api.staging-riseworks.io
    description: Staging
  - url: https://integrations-api.riseworks.io
    description: Production
security: []
paths:
  /v2/invites/manager:
    put:
      tags:
        - B2B Invites
      summary: Execute admin invites
      description: >-
        Execute admin invites for a company or team. This is used to execute
        admin invites for a company or team.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                invites:
                  type: array
                  items:
                    type: string
                    minLength: 15
                    maxLength: 15
                    pattern: ^in-.*
                    description: >-
                      Identifier of an invite (e.g. team-member invitation).
                      15-character nanoid prefixed with `in-`.
                signer:
                  type: string
                  pattern: ^0x[a-fA-F0-9]{40}$
                  description: EVM address (0x + 40 hex chars) or null/empty for unknown.
                typed_data:
                  type: object
                  properties:
                    from:
                      type: string
                      pattern: ^0x[a-fA-F0-9]{40}$
                      description: >-
                        EVM address (0x + 40 hex chars) or null/empty for
                        unknown.
                    to:
                      type: string
                      pattern: ^0x[a-fA-F0-9]{40}$
                      description: >-
                        EVM address (0x + 40 hex chars) or null/empty for
                        unknown.
                    salt:
                      type: string
                    expires:
                      type: string
                    data:
                      type: array
                      items:
                        type: object
                        properties:
                          role:
                            type: string
                          account:
                            type: string
                            pattern: ^0x[a-fA-F0-9]{40}$
                            description: >-
                              EVM address (0x + 40 hex chars) or null/empty for
                              unknown.
                        required:
                          - role
                          - account
                  required:
                    - from
                    - to
                    - salt
                    - expires
                    - data
                signature:
                  type: string
                  pattern: ^0x(?!0{130}$)[a-fA-F0-9]{130}$
                  description: >-
                    ECDSA signature over an EVM message (0x + 130 hex chars
                    covering r, s, v).
              required:
                - invites
                - signer
                - typed_data
                - signature
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      invites:
                        type: array
                        items:
                          type: string
                          minLength: 15
                          maxLength: 15
                          pattern: ^in-.*
                          description: >-
                            Identifier of an invite (e.g. team-member
                            invitation). 15-character nanoid prefixed with
                            `in-`.
                      transaction:
                        type: string
                        minLength: 15
                        maxLength: 15
                        pattern: ^tx-.*
                        description: >-
                          Identifier of a Rise transaction (the unit tracked
                          end-to-end across the payment-handler pipeline).
                          15-character nanoid prefixed with `tx-`. Distinct from
                          on-chain tx hashes.
                    required:
                      - invites
                      - transaction
                    additionalProperties: false
                required:
                  - success
                  - data
                additionalProperties: false
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  data:
                    type: string
                  error_code:
                    type: string
                required:
                  - success
                  - data
                additionalProperties: false
                description: Bad Request
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  data:
                    type: string
                  error_code:
                    type: string
                required:
                  - success
                  - data
                additionalProperties: false
                description: Unauthorized
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  data:
                    type: string
                  error_code:
                    type: string
                required:
                  - success
                  - data
                additionalProperties: false
                description: Forbidden
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  data:
                    type: string
                  error_code:
                    type: string
                required:
                  - success
                  - data
                additionalProperties: false
                description: Not Found
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  data:
                    type: string
                  error_code:
                    type: string
                required:
                  - success
                  - data
                additionalProperties: false
                description: Internal Server Error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````