Sonar · Example Payload

Sonar Search Organizations Example

CI/CDCode QualityDevOpsSecuritySonarCloudSonarQubeStatic Analysis

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

Top-level fields

pagingorganizations

Example Payload

Raw ↑
{
  "paging": {
    "pageIndex": 1,
    "pageSize": 25,
    "total": 2
  },
  "organizations": [
    {
      "key": "my-github-org",
      "name": "My GitHub Organization",
      "guarded": false,
      "visibility": "public",
      "subscription": "PAID",
      "alm": {
        "key": "github",
        "url": "https://github.com/my-github-org"
      }
    },
    {
      "key": "my-personal-org",
      "name": "My Personal Account",
      "guarded": false,
      "visibility": "private",
      "subscription": "FREE",
      "alm": {
        "key": "github",
        "url": "https://github.com/my-username"
      }
    }
  ]
}