Saasment · Example Payload

Saasment Get Posture Score Example

SaaS SecuritySSPMCloud SecurityCost OptimizationComplianceMisconfigurations

Saasment Get Posture Score Example is an example object payload from Saasment, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.saasment.com/v1/posture/score",
    "headers": {
      "Authorization": "Bearer {token}",
      "Content-Type": "application/json"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "overall_score": 72,
      "grade": "C",
      "domains": [
        {
          "name": "Identity & Access",
          "score": 65,
          "misconfigurations": 12
        },
        {
          "name": "Data Protection",
          "score": 78,
          "misconfigurations": 6
        },
        {
          "name": "Compliance",
          "score": 81,
          "misconfigurations": 4
        },
        {
          "name": "Threat Detection",
          "score": 70,
          "misconfigurations": 8
        }
      ],
      "last_updated": "2026-05-02T08:00:00Z"
    }
  }
}