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

# SendMauriceOrderEmailAPI sends Maurice's fixed billing-order message. The


> private Order URL is the sole CTA and is never accepted as arbitrary body copy. Only an unscoped organization API key may invoke this external effect; authenticated sessions, guest/external tokens, and scoped API keys are not operator credentials.




## OpenAPI

````yaml /api/openapi.json post /v1/maurice-order-emails
openapi: 3.0.0
info:
  title: Erdo API
  description: >-
    Erdo's REST API: query and write datasets, run agents, manage threads,
    integrations, pages, evals, workstreams, experiments, and bounded outreach.
    Authenticate with a Bearer API key (erdo_api_...) or scoped token
    (erdo_token_...).
  version: '2026-09-09'
servers:
  - url: https://api.erdo.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/maurice-order-emails:
    post:
      summary: >
        SendMauriceOrderEmailAPI sends Maurice's fixed billing-order message.
        The
      description: >
        private Order URL is the sole CTA and is never accepted as arbitrary
        body copy. Only an unscoped organization API key may invoke this
        external effect; authenticated sessions, guest/external tokens, and
        scoped API keys are not operator credentials.
      operationId: POST:mcp.SendMauriceOrderEmailAPI
      requestBody:
        content:
          application/json:
            schema:
              properties:
                customer_company_name:
                  type: string
                ends_on:
                  type: string
                idempotency_key:
                  type: string
                order_id:
                  type: string
                order_revision:
                  format: int64
                  type: integer
                order_url:
                  type: string
                starts_on:
                  description: |
                    orders omit both; exactly one of the pair is rejected.
                  title: >
                    StartsOn/EndsOn are the legacy fixed service term. Current
                    open-ended
                  type: string
                to:
                  type: string
                to_name:
                  type: string
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  email_id:
                    type: string
                  from:
                    type: string
                  status:
                    type: string
                  subject:
                    type: string
                  to:
                    type: string
                type: object
          description: Success response
        default:
          $ref: '#/components/responses/APIError'
components:
  responses:
    APIError:
      content:
        application/json:
          schema:
            externalDocs:
              url: https://pkg.go.dev/encore.dev/beta/errs#Error
            properties:
              code:
                description: Error code
                example: not_found
                externalDocs:
                  url: https://pkg.go.dev/encore.dev/beta/errs#ErrCode
                type: string
              details:
                description: Error details
                type: object
              message:
                description: Error message
                type: string
            title: APIError
            type: object
      description: Error response
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: An Erdo API key (erdo_api_...) or scoped token (erdo_token_...).

````