Batch Update Cost Categories

put

/api/restapi/costCategory/batch

Send a request to this endpoint to update one or more cost categories. For each JSON object provided in the request body, an application object with a matching ID value will be updated to reflect the JSON contents.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : List<ApiEntityCostCategoryInput>
Type: array
Title: List<ApiEntityCostCategoryInput>
Show Source
  • ApiEntityCostCategoryInput
    Title: ApiEntityCostCategoryInput
    This entity represents a CostCategory object, a unique CostCategory object can be identified by the following combinations of the fields.
    • costCategoryId
    • abbreviation,costCategoryName,workspaceId
    • abbreviation,costCategoryName,workspaceCode
Nested Schema : ApiEntityCostCategoryInput
Type: object
Title: ApiEntityCostCategoryInput
This entity represents a CostCategory object, a unique CostCategory object can be identified by the following combinations of the fields.
  • costCategoryId
  • abbreviation,costCategoryName,workspaceId
  • abbreviation,costCategoryName,workspaceCode
Show Source
  • Minimum Length: 1
    Maximum Length: 10
    The abbreviation for the cost category name.
  • Read Only: true
    Allowed Values: [ "OWNED", "INHERITED" ]
    Deprecated. As of 24.5.
    The type of association in the relationship between the cost category and the workspace. Possible values are Owned and Inherited.
  • The system-generated identifier of a cost category.
  • Minimum Length: 1
    Maximum Length: 255
    The name of the cost category.
  • Read Only: true
    Deprecated. As of 23.10.
    The self-link to the object. This field is populated only in the responses generated by the batch create APIs.
  • Allowed Values: [ "MANUAL", "AUTOMATIC" ]
    How data is shared between parent and child workspaces.
    Manual: Data can be pulled down by child workspaces. This is the default option.
    Automatic: Data is automatically shared with all child workspaces.
  • Allowed Values: [ "LABOR", "EQUIPMENT", "MATERIALS", "OTHER" ]
    The classification of the cost category.
    Labor: Calculates Cost of the project as Quantity multiplied by Production Rate multiplied by Labor Rate.
    Equipment: Calculates Cost of the project as Quantity multiplied by Unit Rate multiplied by Labor Rate.
    Materials: Calculates Cost of the project as Quantity multiplied by Unit Rate multiplied by Labor Rate.
    Other: Cost is manually entered as a lump sum.
  • Read Only: true
    Deprecated. As of 24.5.
    Date when the record was last updated.
  • Minimum Length: 0
    Maximum Length: 60
    The user-specified identifier of a workspace.
  • The unique identifier for the workspace.The workspace object can also be identified by its unique criteria.
Examples

Back to Top

Response

200 Response

A collection of object IDs mapped to a canonical link of the object. For example - {"links":{"1":"https://[host]:[port]/api/restapi/[object]/1","2":"https://[host]:[port]/api/restapi/[object]/2"}}

400 Response

Invalid input for the Cost Category service. Verify the request contains valid data, then resubmit the request.
Back to Top