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

# Show campaign

> Return one campaign owned by the authenticated superadmin.



## OpenAPI

````yaml /api/superadmin.openapi.yaml get /communications/campaigns/{campaign}
openapi: 3.1.0
info:
  title: YouNegotiate Superadmin API
  version: '2.0'
  description: Stateless API endpoints for the Superadmin portal.
servers:
  - url: https://api.hub.younegotiate.com
    description: Production
security: []
tags:
  - name: System
    description: Public superadmin domain system and health endpoints.
  - name: Authentication
    description: Superadmin login, logout, password reset, and password change endpoints.
  - name: Profile
    description: Authenticated superadmin profile endpoints.
  - name: Admin Configuration
    description: Platform configuration values and feature flag controls.
  - name: MailHub Users
    description: Superadmin management for EcoMail Hub / EcoPortal users.
  - name: Super Admin Users
    description: Superadmin management for platform operations users.
  - name: Consumers
    description: Superadmin consumer account list, detail, filter, and export endpoints.
  - name: Creditors
    description: Superadmin creditor account list and account access endpoints.
  - name: Sub Accounts
    description: Superadmin sub account list and export endpoints.
  - name: Reseller Partners
    description: Superadmin reseller partner list and report-history endpoints.
  - name: Special Plan Inquiries
    description: >-
      Superadmin special membership inquiry list, detail, resolve, and close
      endpoints.
  - name: Plans
    description: >-
      Superadmin membership plan list, create, update, reorder, visibility, and
      delete endpoints.
  - name: Failed - Canceled
    description: Superadmin failed or cancelled membership list and custom email endpoints.
  - name: Merchant Requests
    description: >-
      Superadmin merchant API request list, export, email, forwarding, progress,
      and approval endpoints.
  - name: Bill Pay Donations
    description: Superadmin Bill Pay gift donation list, export, and receipt endpoints.
  - name: Export & Reporting
    description: Superadmin generated report options and CSV download endpoints.
  - name: Communications / Templates
    description: >-
      Superadmin email and SMS template management for manual communications and
      campaigns.
  - name: Communications / Groups
    description: >-
      Superadmin communication group management for dynamic consumer targeting
      and campaign selection.
  - name: Communications / Schedule Campaign
    description: >-
      Superadmin email and SMS campaign scheduling, immediate send, and delivery
      queue endpoints.
  - name: Communications / Campaign Tracker
    description: >-
      Superadmin campaign tracker snapshots, refresh actions, and consumer
      exports.
  - name: Automated Communications
    description: >-
      Superadmin automated email/SMS templates, trigger configuration, and
      delivery history endpoints.
paths:
  /communications/campaigns/{campaign}:
    parameters:
      - name: campaign
        in: path
        required: true
        description: Campaign ID.
        schema:
          type: integer
    get:
      tags:
        - Communications / Schedule Campaign
      summary: Show campaign
      description: Return one campaign owned by the authenticated superadmin.
      operationId: superadminShowCampaign
      responses:
        '200':
          description: Campaign returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuperAdminCampaignResponse'
        '401':
          $ref: '#/components/responses/Unauthenticated'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - bearerAuth: []
components:
  schemas:
    SuperAdminCampaignResponse:
      type: object
      required:
        - data
      properties:
        data:
          $ref: '#/components/schemas/SuperAdminCampaign'
    SuperAdminCampaign:
      type: object
      required:
        - id
        - template_id
        - group_id
        - template
        - group
        - frequency
        - start_date
        - end_date
        - day_of_week
        - day_of_month
        - terms
        - is_run_immediately
      properties:
        id:
          type: integer
          example: 101
        template_id:
          type: integer
          example: 10
        group_id:
          type: integer
          example: 25
        template:
          oneOf:
            - $ref: '#/components/schemas/SuperAdminCampaignTemplateSummary'
            - type: 'null'
        group:
          oneOf:
            - $ref: '#/components/schemas/SuperAdminCampaignGroupSummary'
            - type: 'null'
        frequency:
          $ref: '#/components/schemas/SuperAdminCampaignFrequencySelection'
        start_date:
          type: string
          format: date
          nullable: true
          example: '2026-06-21'
        end_date:
          type: string
          format: date
          nullable: true
          example: '2026-09-21'
        day_of_week:
          type: integer
          nullable: true
          minimum: 0
          maximum: 6
          example: 1
        day_of_month:
          type: integer
          nullable: true
          minimum: 1
          maximum: 31
          example: 15
        terms:
          type: string
          example: Weekly on Monday
        is_run_immediately:
          type: boolean
          example: false
        created_at:
          type: string
          format: date-time
          nullable: true
        updated_at:
          type: string
          format: date-time
          nullable: true
    MessageResponse:
      type: object
      required:
        - message
      properties:
        message:
          type: string
    SuperAdminCampaignTemplateSummary:
      type: object
      required:
        - id
        - name
        - type
      properties:
        id:
          type: integer
          example: 10
        name:
          type: string
          example: Settlement Email
        type:
          $ref: '#/components/schemas/SuperAdminCampaignTemplateTypeSelection'
    SuperAdminCampaignGroupSummary:
      type: object
      required:
        - id
        - name
      properties:
        id:
          type: integer
          example: 25
        name:
          type: string
          example: Delivered January Group
    SuperAdminCampaignFrequencySelection:
      type: object
      required:
        - value
        - label
      properties:
        value:
          $ref: '#/components/schemas/SuperAdminCampaignFrequency'
        label:
          type: string
          example: Weekly
    SuperAdminCampaignTemplateTypeSelection:
      type: object
      required:
        - value
        - label
      properties:
        value:
          $ref: '#/components/schemas/SuperAdminCampaignTemplateType'
        label:
          type: string
          example: Email
    SuperAdminCampaignFrequency:
      type: string
      enum:
        - once
        - daily
        - weekly
        - monthly
    SuperAdminCampaignTemplateType:
      type: string
      enum:
        - email
        - sms
  responses:
    Unauthenticated:
      description: Missing or invalid bearer token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum token

````