POST
/
v1
/
companies
/
{company_id}
/
accounts
/
curl --request POST \
  --url https://api.gofermata.com/v1/companies/{company_id}/accounts/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "email": "<string>",
  "metadata": {},
  "stripe_id": "<string>",
  "plan_id": "<string>"
}'
{
  "data": "<any>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

company_id
string
required

Body

application/json

Response

200 - application/json

OK

The response is of type object.