Sign in

Create company

documented

Create a new company.

POST /companiesCompaniesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://www.triggerapp.com/api/v1/companies" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"company": {"name": "{{$name}}", "billable": {{$billable}}, "status": "{{$status}}", "address1": "{{$address1}}", "address2": "{{$address2}}", "city": "{{$city}}", "postcode": "{{$postcode}}", "state": "{{$state}}", "country": "{{$country}}", "phone": "{{$phone}}", "currency_symbol": "{{$currency_symbol}}", "custom_currency_symbol": "{{$custom_currency_symbol}}", "task_rate": {{$task_rate}}}}'