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

# Update sender ID



## OpenAPI

````yaml PATCH /sender-ids/{id}
openapi: 3.1.0
info:
  title: Robase API
  version: '2026-04-17'
  description: Transactional email and programmable SMS for Africa.
  contact:
    email: support@robase.dev
    url: https://robase.dev
  license:
    name: Proprietary
servers:
  - url: https://api.robase.dev/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /sender-ids/{id}:
    patch:
      tags:
        - Sender IDs
      summary: Update a pending sender ID
      operationId: updateSenderId
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                notes:
                  type: string
                countries:
                  type: array
                  items:
                    type: string
                registered_entity:
                  type: string
                registration_doc_url:
                  type: string
                use_case:
                  type: string
                sample_message:
                  type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SenderID'
components:
  schemas:
    SenderID:
      type: object
      properties:
        id:
          type: string
          format: uuid
        sender_id:
          type: string
        status:
          type: string
          enum:
            - pending
            - approved
            - rejected
            - active
        countries:
          type: array
          items:
            type: string
        registered_entity:
          type: string
        registration_doc_url:
          type: string
        use_case:
          type: string
        sample_message:
          type: string
        rejection_reason:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: rb_<env>_<token>
      description: 'Pass your API key as `Authorization: Bearer rb_live_...`'

````