Skip to main content
POST
/
business-case-statuses
Create business-case status
curl --request POST \
  --url https://app.fintoro.sk/api/public/v1/business-case-statuses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Negotiation",
  "color": "#22aa44"
}
'
{
  "id": 41,
  "name": "Negotiation",
  "color": "#22aa44"
}

Authorizations

Authorization
string
header
required

Bearer token created for a specific company in Integrations → API.

Headers

Idempotency-Key
string

Optional request identifier for safe retries. Use a unique value for each create request you want to retry safely.

Example:

"invoice-create-2026-03-03-001"

Body

application/json

Payload used to create or update a business-case status.

name
string
required

Business-case status name.

Maximum string length: 255
Example:

"Negotiation"

color
string
required

Status color in hex format.

Maximum string length: 7
Example:

"#22aa44"

Response

Business-case status created.

Business-case status. Represents one pipeline column.

id
integer

Internal business-case status ID.

Example:

41

name
string

Business-case status name.

Example:

"Negotiation"

color
string

Status color in hex format.

Maximum string length: 7
Example:

"#22aa44"