Middesk subpackage_registrationRequests API

The subpackage_registrationRequests API from Middesk — 3 operation(s) for subpackage_registrationrequests.

Operations 5

GET /v1/partner/registration_requests List registration requests #
POST /v1/partner/registration_requests Create a registration request #
GET /v1/partner/registration_requests/{id} Retrieve a registration request #
DELETE /v1/partner/registration_requests/{id} Delete a registration request #
GET /v1/partner/registration_requests/{id}/guest_dashboard Fetch guest dashboard link for a registration request #

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/middesk-subpackage-registrationrequests-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

middesk-subpackage-registrationrequests-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Middesk subpackage_actions Subpackage Registration Requests API
  version: 1.0.0
servers:
- url: https://api.middesk.com
  description: Default
tags:
- name: subpackage_registrationRequests
paths:
  /v1/partner/registration_requests:
    get:
      operationId: list-registration-requests
      summary: List registration requests
      tags:
      - subpackage_registrationRequests
      parameters:
      - name: page
        in: query
        description: Page number
        required: false
        schema:
          type: integer
      - name: per_page
        in: query
        description: Items per page
        required: false
        schema:
          type: integer
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: registration requests list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type_registrationRequests_ListRegistrationRequestsResponse'
    post:
      operationId: create-registration-request
      summary: Create a registration request
      tags:
      - subpackage_registrationRequests
      parameters:
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '201':
          description: registration request created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type__RegistrationRequest'
        '400':
          description: validation errors
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type__ErrorResponse'
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                state:
                  $ref: '#/components/schemas/type_registrationRequests_RegistrationRequestParamState'
                  description: US state abbreviation (required)
                email:
                  type: string
                  format: email
                  description: User email (required)
                company_id:
                  type: string
                  format: uuid
                  description: Existing company ID
                company_name:
                  type: string
                  description: Company name for new company
                external_id:
                  type: string
                  description: External company identifier
                tax_registration_types:
                  type: array
                  items:
                    type: string
                  description: Types of tax registrations (e.g., sales_tax, payroll_tax)
                jurisdictions:
                  type: array
                  items:
                    type: string
                  description: Tax jurisdictions
                redirect_uri:
                  type: string
                  format: uri
                  description: Success redirect URL
                redirect_back_uri:
                  type: string
                  format: uri
                  description: Back redirect URL
              required:
              - state
              - email
  /v1/partner/registration_requests/{id}:
    get:
      operationId: get-registration-request
      summary: Retrieve a registration request
      tags:
      - subpackage_registrationRequests
      parameters:
      - name: id
        in: path
        description: Registration Request ID
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: registration request found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type__RegistrationRequest'
        '404':
          description: registration request not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type__ErrorResponse'
    delete:
      operationId: delete-registration-request
      summary: Delete a registration request
      tags:
      - subpackage_registrationRequests
      parameters:
      - name: id
        in: path
        description: Registration Request ID
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
        '400':
          description: registration request already submitted
          content:
            application/json:
              schema:
                description: Any type
        '404':
          description: registration request not found
          content:
            application/json:
              schema:
                description: Any type
  /v1/partner/registration_requests/{id}/guest_dashboard:
    get:
      operationId: get-registration-request-guest-dashboard
      summary: Fetch guest dashboard link for a registration request
      tags:
      - subpackage_registrationRequests
      parameters:
      - name: id
        in: path
        description: Registration Request ID
        required: true
        schema:
          type: string
      - name: section
        in: query
        description: Dashboard section to link to
        required: false
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: guest dashboard link
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type_registrationRequests_GetRegistrationRequestGuestDashboardResponse'
        '404':
          description: registration request not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/type__ErrorResponse'
components:
  schemas:
    type__ErrorResponseErrorsItem:
      type: object
      properties:
        message:
          type: string
      required:
      - message
      title: ErrorResponseErrorsItem
    type__ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/type__ErrorResponseErrorsItem'
      required:
      - errors
      title: ErrorResponse
    type_registrationRequests_RegistrationRequestParamState:
      type: string
      enum:
      - AL
      - AK
      - AZ
      - AR
      - CA
      - CO
      - CT
      - DE
      - FL
      - GA
      - HI
      - ID
      - IL
      - IN
      - IA
      - KS
      - KY
      - LA
      - ME
      - MD
      - MA
      - MI
      - MN
      - MS
      - MO
      - MT
      - NE
      - NV
      - NH
      - NJ
      - NM
      - NY
      - NC
      - ND
      - OH
      - OK
      - OR
      - PA
      - RI
      - SC
      - SD
      - TN
      - TX
      - UT
      - VT
      - VA
      - WA
      - WV
      - WI
      - WY
      description: US state abbreviation (required)
      title: RegistrationRequestParamState
    type__RegistrationRequest:
      type: object
      properties:
        object:
          type: string
        id:
          type: string
          format: uuid
        state:
          $ref: '#/components/schemas/type__RegistrationRequestState'
          description: US state abbreviation
        status:
          type: string
          description: Request status
        tax_registration_types:
          type:
          - array
          - 'null'
          items:
            type: string
          description: Types of tax registrations requested
        company_id:
          type: string
          format: uuid
        external_id:
          type:
          - string
          - 'null'
        submitted_at:
          type:
          - string
          - 'null'
        created_at:
          type: string
        agencies:
          type: array
          items:
            type: object
            additionalProperties:
              description: Any type
          description: Tax agency registrations
        items:
          type: array
          items:
            type: object
            additionalProperties:
              description: Any type
          description: Registration items
        tax_registration:
          type:
          - object
          - 'null'
          additionalProperties:
            description: Any type
          description: Tax registration details
        invite_link:
          type: string
          format: uri
      required:
      - object
      - id
      - state
      - status
      - tax_registration_types
      - company_id
      - created_at
      - agencies
      - items
      - invite_link
      title: RegistrationRequest
    type_registrationRequests_GetRegistrationRequestGuestDashboardResponse:
      type: object
      properties:
        guest_dashboard_url:
          type: string
          format: uri
      required:
      - guest_dashboard_url
      title: GetRegistrationRequestGuestDashboardResponse
    type_registrationRequests_ListRegistrationRequestsResponse:
      type: object
      properties:
        object:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/type__RegistrationRequest'
        url:
          type: string
      title: ListRegistrationRequestsResponse
    type__RegistrationRequestState:
      type: string
      enum:
      - AL
      - AK
      - AZ
      - AR
      - CA
      - CO
      - CT
      - DE
      - FL
      - GA
      - HI
      - ID
      - IL
      - IN
      - IA
      - KS
      - KY
      - LA
      - ME
      - MD
      - MA
      - MI
      - MN
      - MS
      - MO
      - MT
      - NE
      - NV
      - NH
      - NJ
      - NM
      - NY
      - NC
      - ND
      - OH
      - OK
      - OR
      - PA
      - RI
      - SC
      - SD
      - TN
      - TX
      - UT
      - VT
      - VA
      - WA
      - WV
      - WI
      - WY
      description: US state abbreviation
      title: RegistrationRequestState
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer