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

# Retry NSE provisioning

> Re-queues NSE UCC registration for an investor that is REJECTED or stuck PROCESSING, replaying the stored request. Rejected if already REGISTERED — use PATCH to modify a registered investor.



## OpenAPI

````yaml /openapi.yaml post /api/investors/v1/:id/retry
openapi: 3.0.3
info:
  title: MF Atlas API
  version: 1.0.0
servers:
  - description: Sandbox
    url: https://api-sandbox.mf-atlas.space
  - description: Production
    url: https://api.mf-atlas.space
security:
  - bearerAuth: []
paths:
  /api/investors/v1/:id/retry:
    post:
      tags:
        - investors
      summary: Retry NSE provisioning
      description: >-
        Re-queues NSE UCC registration for an investor that is REJECTED or stuck
        PROCESSING, replaying the stored request. Rejected if already REGISTERED
        — use PATCH to modify a registered investor.
      parameters:
        - description: ''
          in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  client_ref:
                    type: string
                  created_at:
                    type: string
                  id:
                    type: string
                  provider:
                    type: string
                  providers:
                    type: array
                  status:
                    description: >-
                      PENDING | PROCESSING | REGISTERED | REJECTED. NSE
                      registration happens asynchronously after creation — poll
                      GET or listen for the
                      investor.registered/investor.rejected webhook events.
                    type: string
                type: object
          description: Investor re-queued for NSE provisioning
components:
  securitySchemes:
    bearerAuth:
      bearerFormat: Opaque bearer token from POST /api/auth/v1/token
      scheme: bearer
      type: http

````