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

# Get current posture grades for authorized partner tenants.

> This endpoint returns each tenant's current score (0-100) and letter grade (`A+` to `F`)
for overall risk, vulnerability, and secure baseline, for the authorized partner's tenant
scope.

**Notes:**
- `tenant_ids` (optional, comma-separated) restricts results to specific tenants.
- The overall grade combines the vulnerability and secure baseline grades.
- A component is `null` until the tenant has been scored for it.


Required headers:

- `Authorization: Bearer {token}` (requires the `pulse.read` scope)



## OpenAPI

````yaml /api/partner-api/reporting.json get /pulse/v1/partner/dashboards/posture
openapi: 3.1.1
info:
  title: 'Cyrisma New Partner API: Reporting'
  version: v1
servers:
  - url: https://{instance}.cyrisma.com/app
    description: The partner's CYRISMA instance host.
    variables:
      instance:
        default: ccnnnnnn
        description: The instance label of the tenant host issued to the partner.
security:
  - bearerAuth:
      - pulse.read
tags:
  - name: Reporting
paths:
  /pulse/v1/partner/dashboards/posture:
    get:
      tags:
        - Reporting
      summary: Get current posture grades for authorized partner tenants.
      description: >-
        This endpoint returns each tenant's current score (0-100) and letter
        grade (`A+` to `F`)

        for overall risk, vulnerability, and secure baseline, for the authorized
        partner's tenant

        scope.


        **Notes:**

        - `tenant_ids` (optional, comma-separated) restricts results to specific
        tenants.

        - The overall grade combines the vulnerability and secure baseline
        grades.

        - A component is `null` until the tenant has been scored for it.



        Required headers:


        - `Authorization: Bearer {token}` (requires the `pulse.read` scope)
      operationId: GetPartnerPostureV1
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartnerPostureResponse'
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '403':
          description: Forbidden
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '503':
          description: Service Unavailable
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    PartnerPostureResponse:
      required:
        - root_tenant_id
        - tenants
      type: object
      properties:
        root_tenant_id:
          type: string
          format: uuid
        tenants:
          type: array
          items:
            $ref: '#/components/schemas/PartnerTenantPosture'
    ProblemDetails:
      type: object
      properties:
        type:
          type:
            - 'null'
            - string
        title:
          type:
            - 'null'
            - string
        status:
          pattern: ^-?(?:0|[1-9]\d*)$
          type:
            - 'null'
            - integer
            - string
          format: int32
        detail:
          type:
            - 'null'
            - string
        instance:
          type:
            - 'null'
            - string
    PartnerTenantPosture:
      required:
        - tenant_id
        - tenant_host
        - overall
        - vulnerability
        - secure_baseline
      type: object
      properties:
        tenant_id:
          type: string
          format: uuid
        tenant_host:
          type: string
        overall:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/PartnerPostureGrade'
        vulnerability:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/PartnerPostureGrade'
        secure_baseline:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/PartnerPostureGrade'
    PartnerPostureGrade:
      required:
        - score
        - grade
        - scores_as_of
      type: object
      properties:
        score:
          pattern: ^-?(?:0|[1-9]\d*)(?:\.\d+)?$
          type:
            - 'null'
            - number
            - string
          format: double
        grade:
          type: string
        scores_as_of:
          type:
            - 'null'
            - string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        A Tenant Authority machine-client token from POST /v1/auth/client-token,
        carrying subject_type=machine_client and the pulse.read scope.
      scheme: bearer
      bearerFormat: JWT

````