Skip to main content
PUT
/
business-case-statuses
/
{businessCaseStatus}
Update business-case status
curl --request PUT \
  --url https://app.fintoro.sk/api/public/v1/business-case-statuses/{businessCaseStatus} \
  --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.

Path Parameters

businessCaseStatus
integer
required

Business-case status ID.

Example:

41

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 updated.

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"