Skip to main content
POST
/
accounts
Create or update an account
curl --request POST \
  --url https://api.hacktionbase.com/v1/accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "externalId": "org_456",
  "name": "<string>",
  "attributes": {}
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
externalId
string
required
Example:

"org_456"

name
string
attributes
object

Response

202

Accepted