Skip to content

Acknowledge a billing notice

POST
/billing/notices/{id}/ack
curl --request POST \
--url https://api.sloose.com/billing/notices/ntc_4d19/ack \
--header 'Authorization: Bearer <token>'

Marks a notice as seen so the UI stops showing it. Acknowledging does not resolve the underlying problem.

id
required

The notice id.

string
Example
ntc_4d19

The notice id.

The notice, now acknowledged.

Media typeapplication/json
object
id
required
string
orgId
required
string
kind
required
string
createdAt
required
string
acknowledgedAt
required
string | null
resolvedAt
required
string | null
key
additional properties
Examplegenerated
{
"id": "example",
"orgId": "example",
"kind": "example",
"createdAt": "example",
"acknowledgedAt": "example",
"resolvedAt": "example"
}

No bearer, or one that is expired, revoked or no longer resolves to a member.

Media typeapplication/json

The error envelope every non-2xx answer uses.

object
error
required

Human-readable explanation.

string
code

Machine-readable reason. Absent on a few legacy 400s.

string
key
additional properties
Examplegenerated
{
"error": "example",
"code": "example"
}

The bearer’s role is too low, or it was issued for a different org.

Media typeapplication/json

The error envelope every non-2xx answer uses.

object
error
required

Human-readable explanation.

string
code

Machine-readable reason. Absent on a few legacy 400s.

string
key
additional properties
Examplegenerated
{
"error": "example",
"code": "example"
}

No such notice on this org.

Media typeapplication/json
object
error
required
string
key
additional properties
Examplegenerated
{
"error": "example"
}