v1

latestOpenAPI 3.1.02026-08-0658107212.4 KB
Accounts

Create Account

post/api/accounts/create.json

Query parameters

api_keystring required
Example:YOUR_API_KEY

Your API Key.

Request body

Example request

{
  "account": {
    "first_name": "John",
    "last_name": "Doe",
    "organization_name": "My Company",
    "phone": "912345678",
    "email": "john.doe@example.com",
    "password": "secret123",
    "fiscal_id": "500100200",
    "tax_country": "1",
    "language": "pt",
    "terms": "1",
    "marketing": "0"
  }
}

Response

SUCCESS

Example response

{
  "account": {
    "id": "12345",
    "name": "My Company",
    "url": "https://mycompany.app.invoicexpress.com",
    "api_key": "abc123xyz456",
    "state": "active"
  }
}