Company Module
Companies
GET Companies
Returns a list of ALL Companies. Can be filtered with an OData style query string.
GET Companies/{companyPK}
Returns the Company with the specified PK value.
Parameters
- companyPK (FromUri): The PK value of the requested Company.
POST Companies
Creates one or more Companies in the system with the details specified in the request body.
Parameters
- newCompanies (FromBody): An Array of Companies to be created.
PUT Companies/{companyPK}
Updates the specified Company with the details specified in the request body.
Parameters
- companyPK (FromUri): The PK value of the Company to be updated.
- updatedViewModel (FromBody): Updated details of the Company.
PUT Companies
Updates one or more Companies in the system with the details specified in the request body.
Parameters
- updViews (FromBody): A collection of Companies to be updated.