Skala
Resources

Update a resource

Partially updates specific fields of an existing resource without affecting the rest of the data.

PATCH
/api/resources/{id}

Partially updates specific fields of an existing resource without affecting the rest of the data.

AuthorizationBearer <token>

In: header

Path Parameters

id*string

Resource identifier

Request Body

application/merge-patch+json

The updated Resource resource

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PATCH "https://api.skalasuite.com/api/resources/string" \  -H "Content-Type: application/merge-patch+json" \  -d '<name>string</name>'
{
  "id": 0,
  "name": "string",
  "price": "string",
  "isActive": true,
  "useActualCost": true
}
Empty
Empty
Empty