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

# List message service providers

> Retrieve the configured message delivery providers for the specified app



## OpenAPI

````yaml /swagger.json get /v1/apps/{app_id}/message_service_providers
openapi: 3.0.1
info:
  title: Scute API
  version: v1
  description: API for managing users in Scute applications
servers:
  - url: https://{defaultHost}
    variables:
      defaultHost:
        default: api.scute.io
  - url: http://localhost:3333
    description: Development server
security:
  - apiSecret: []
    userAccess: []
paths:
  /v1/apps/{app_id}/message_service_providers:
    parameters:
      - name: app_id
        in: path
        required: true
        description: App ID
        schema:
          type: string
    get:
      tags:
        - Message Service Providers
      summary: List message service providers
      description: Retrieve the configured message delivery providers for the specified app
      operationId: listMessageServiceProviders
      responses:
        '200':
          description: successful
          content:
            application/json:
              schema:
                type: object
                properties:
                  message_service_providers:
                    type: array
                    items:
                      $ref: '#/components/schemas/MessageServiceProvider'
                required:
                  - message_service_providers
        '401':
          description: unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Unauthorized
                required:
                  - error
        '404':
          description: not found - app does not exist
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: App not found
                  error_code:
                    type: string
                    example: app_not_found
                    nullable: true
                required:
                  - error
      security:
        - apiSecret: []
          userAccess: []
components:
  schemas:
    MessageServiceProvider:
      type: object
      properties:
        provider_type:
          type: string
          description: Provider slug (e.g., twilio)
        name:
          type: string
          description: Human-readable provider name
        config:
          type: object
          description: Provider-specific configuration settings
          additionalProperties:
            type: string
        enabled:
          type: boolean
          description: Whether the provider is active
      required:
        - provider_type
        - config
        - enabled
  securitySchemes:
    apiSecret:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: API Secret token
    userAccess:
      type: apiKey
      name: X-Authorization
      in: header
      description: User Access token

````