Get Account

Get a single Account object by ID.

GEThttps://api.platform.softwareone.com/public/v1/accounts/accounts/{id}
Path parameters
id*string
Query parameters
Response

Success

Body
idstring
auditobject
$metaobject
hrefstring
externalIdnullable string
externalNamenullable string
type*object
status*object
serviceLevelobject
addressobject
iconnullable string
technicalSupportEmailnullable string (email)
websitenullable string
descriptionnullable string
name*string
groupsnullable array of UserGroupQueryModel (object)
buyersnullable array of BuyerQueryModel (object)
Request
const response = await fetch('https://api.platform.softwareone.com/public/v1/accounts/accounts/{id}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "id": "text",
  "href": "text",
  "externalId": "text",
  "externalName": "text",
  "icon": "text",
  "technicalSupportEmail": "name@gmail.com",
  "website": "text",
  "description": "text",
  "name": "text",
  "groups": [
    {
      "id": "text",
      "href": "text",
      "name": "text",
      "description": "text",
      "modules": [
        {
          "id": "text",
          "href": "text",
          "description": "text",
          "isConfigurable": false,
          "isEnabledByDefault": false,
          "paid": false,
          "name": "text",
          "accountTypes": [
            "text"
          ]
        }
      ],
      "logo": "text",
      "isDefault": false,
      "users": [
        {
          "id": "text",
          "href": "text",
          "email": "text",
          "status": "text",
          "firstName": "text",
          "lastName": "text",
          "icon": "text",
          "lastLoginAt": "2025-01-23T20:50:27.513Z",
          "name": "text",
          "accounts": []
        }
      ]
    }
  ],
  "buyers": [
    {
      "id": "text",
      "href": "text",
      "icon": "text",
      "taxId": "text",
      "name": "text",
      "sellers": [
        {
          "id": "text",
          "href": "text",
          "externalId": "text",
          "icon": "text",
          "currencies": [
            "text"
          ],
          "name": "text"
        }
      ]
    }
  ]
}

#330:

Change request updated