Skala
Resources

Create a new resource

Adds a new resource record to the database.

POST
/api/resources

Adds a new resource record to the database.

AuthorizationBearer <token>

In: header

Request Body

application/json

The new Resource resource

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

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