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

# Reject a pending wholesale application



## OpenAPI

````yaml /openapi/admin-service.json post /v1/admin/wholesale-applications/{userId}/reject
openapi: 3.0.0
info:
  title: Asiko Admin Service
  description: Admin-only actions — orchestrates calls into each owning service
  version: '1.0'
  contact: {}
servers:
  - url: https://asikodevapi.candourit.io
    description: Production (via api-gateway)
  - url: http://localhost:3000
    description: Local development (via api-gateway)
security: []
tags:
  - name: admin-users
    description: ''
  - name: admin-trade-accounts
    description: ''
paths:
  /v1/admin/wholesale-applications/{userId}/reject:
    post:
      tags:
        - admin-wholesale
      summary: Reject a pending wholesale application
      operationId: AdminWholesaleController_reject
      parameters:
        - name: authorization
          required: true
          in: header
          schema:
            type: string
        - name: userId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AdminRejectWholesaleBody'
      responses:
        '200':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    AdminRejectWholesaleBody:
      type: object
      properties:
        reason:
          type: string
          example: Registration number could not be verified
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````