For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
SupportDeveloper ForumLogin
  • Overview
    • Introduction
    • Getting Started
    • Integration Example (PSA)
    • Authentication
    • Error Handling
    • Pagination
    • Filtering
    • Ordering
    • Rate Limits
    • Permissions
    • Webhooks
    • MCP Server
    • Versioning
    • Changelog
    • Support
  • API v1 Reference
    • Projects Overview
    • Tasks Overview
    • Time Tracking Overview
    • Documents Overview
    • Search Overview
    • Companies Overview
    • Users Overview
    • Files & Images Overview
    • Custom Fields Overview
    • Workload & Planning Overview
    • Project Templates Overview
    • Workflows Overview
    • Login & Access Overview
    • API Management Overview
LogoLogo
SupportDeveloper ForumLogin
On this page
  • Creating a company
API v1 Reference

Companies

Was this page helpful?
Edit this page
Previous

Returns all companies.

Next
Built with

Companies (Clients in the awork UI) are the contacts or organizations that you work with. Projects are usually connected to Companies.

Creating a company

Creating a company is easy. The only required field for creating a company is the name.

Request
1curl -X POST "https://api.awork.com/api/v1/companies" \
2 -H "Content-Type: application/json" \
3 -d '{
4 "name": "My first company"
5 }'