Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 779 Bytes

companies.md

File metadata and controls

39 lines (29 loc) · 779 Bytes

Companies

For the full XML representation of companies, check out the data reference.

Get companies

  • GET /companies.xml returns a list of all companies visible to the requesting user.
  • GET /projects/#{project_id}/companies.xml returns a list of all companies associated with the given project.

Response:

<companies>
  <company>
    ...
  </company>
  <company>
    ...
  </company>
  ...
</company>

Get company

  • GET /companies/#{company_id}.xml returns a single company identified by its integer ID.

Response:

<company>
  <id type="integer">1</id>
  <name>Globex Corporation</name>
</company>