v1

latestOpenAPI 3.1.02026-08-06236494759.4 KB
Resource Sets

Update Resource Set

Endpoint to update a ResourceSet.

put/business/v2/resource-sets/{id}

Path parameters

idstring required

The ResourceSet ID.

Example:7bf79328-a7ae-4222-aa54-091ff7f429a7

Headers

X-Soldo-Fingerprintstring required

Advanced authentication: SHA512SUM of the fingerprint values listed in the fingerprint order for this endpoint.

Example:{{fingerprint}}
X-Soldo-Fingerprint-Signaturestring required

Advanced authentication: Signature of the X-Soldo-Fingerprint.

Example:{{fingerprint_signature}}

Request body

idstring

The ResourceSet ID.

namestring required

The name of the ResourceSet.

descriptionstring

The description of the ResourceSet.

Example request

{
  "id": "7bf79328-a7ae-4222-aa54-091ff7f429a7",
  "name": "Resource set 01",
  "description": "This is a resource set",
  "configuration": [
    {
      "resource_ids": [
        "7bf79328-a7ae-4222-aa54-091ff7f429a7",
        "2d65bd5e-3fdf-4002-b166-bde7fb8863fa"
      ]
    }
  ]
}

Response

The returned resource is a single ResourceSet.

idstring

The ResourceSet ID.

namestring

The name of the ResourceSet.

descriptionstring

The description of the ResourceSet.

creation_timestring

The date and time when the ResourceSet was created.

last_update_timestring

The date and time when the ResourceSet was last updated.

Example response

{
  "id": "7bf79328-a7ae-4222-aa54-091ff7f429a7",
  "name": "Resource set 01",
  "description": "This is a resource set",
  "configuration": [
    {
      "resource_ids": [
        "7bf79328-a7ae-4222-aa54-091ff7f429a7",
        "2d65bd5e-3fdf-4002-b166-bde7fb8863fa"
      ]
    }
  ],
  "creation_time": "2017-06-01T12:48:40Z",
  "last_update_time": "2017-06-01T12:48:40Z"
}