Skip to main content
POST
/
v1
/
auth
/
orgs
/
accept-verification-terms
Record that an owner has accepted the organization verification terms.
curl --request POST \
  --url http://127.0.0.1:8787/v1/auth/orgs/accept-verification-terms \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "data": {
    "verificationTermsAcceptedAt": "<string>",
    "verificationTermsAcceptedBy": "<string>"
  },
  "error": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
organizationId
string<uuid>
required

Response

Terms acceptance recorded (or already on file).

data
object
required
error
null
required