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

# Get the purchasing policy

> Return the company purchasing policy: the editable draft text, the published text (what the agent sees at runtime, or null if never published), and the publication status. Read this before updating so you can re-send the full, edited body and diff draft against published.

<span className="badge-read">Key: Read</span><span className="badge-company">Scope: Company</span>


## OpenAPI

````yaml https://api.getprimo.com/openapi.json get /purchasing-policy
openapi: 3.1.1
info:
  title: Public API - BETA
  description: Read docs on https://docs.getprimo.com/
  version: '1.0'
  contact: {}
servers:
  - url: https://api.getprimo.com
security:
  - apikey: []
tags: []
paths:
  /purchasing-policy:
    get:
      tags:
        - PurchasingPolicy
      summary: Get the purchasing policy
      description: >-
        Return the company purchasing policy: the editable draft text, the
        published text (what the agent sees at runtime, or null if never
        published), and the publication status. Read this before updating so you
        can re-send the full, edited body and diff draft against published.
      operationId: getPurchasingPolicy
      parameters: []
      responses:
        default:
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetPurchasingPolicyResponseDto_Output'
components:
  schemas:
    GetPurchasingPolicyResponseDto_Output:
      type: object
      properties:
        policy:
          description: >-
            The company purchasing policy, or null when no policy has been
            created yet.
          anyOf:
            - type: object
              properties:
                id:
                  type: string
                status:
                  description: >-
                    Publication state. "unpublished": never published (or
                    hidden). "pending-changes": the draft has edits not yet
                    published. "published": the draft matches the published
                    text.
                  type: string
                  enum:
                    - unpublished
                    - pending-changes
                    - published
                draft:
                  description: >-
                    The editable draft. This is the text updatePurchasingPolicy
                    writes.
                  type: object
                  properties:
                    content:
                      description: The Markdown body of the purchasing policy.
                      type: string
                  required:
                    - content
                  additionalProperties: false
                published:
                  description: >-
                    The published text the AI agent sees at runtime, or null if
                    never published. Diff it against the draft to surface
                    pending edits.
                  anyOf:
                    - type: object
                      properties:
                        content:
                          description: The Markdown body of the purchasing policy.
                          type: string
                      required:
                        - content
                      additionalProperties: false
                    - type: 'null'
              required:
                - id
                - status
                - draft
                - published
              additionalProperties: false
            - type: 'null'
      required:
        - policy
      additionalProperties: false
  securitySchemes:
    apikey:
      scheme: bearer
      bearerFormat: API key
      type: http
      description: >-
        Use your Primo API key in the Authorization header as `Bearer
        <API_KEY>`.

````