Skip to main content
POST
/
filings
/
authorization
Set filing authorization
curl --request POST \
  --url https://api.app.lastaccountingcompany.com/portal/filings/authorization \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "authorized": true,
  "customer_id": "<string>"
}
'
{
  "ok": true,
  "event_id": "<string>",
  "authorization": {
    "authorized": true,
    "set_by": "<string>",
    "actor": "<string>",
    "ts": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Portal API key minted in portal Settings → API access. Scope read or write; pinned to one company. Send as Authorization: Bearer lac_sk_....

Body

application/json
authorized
boolean
required

Whether LAC is authorized to submit filings.

customer_id
string

Target company. Optional for API keys.

Response

Authorization state recorded.

ok
boolean
event_id
string
authorization
object