Code Value REST Endpoints
Code Value
Use the Code Value service to create, view, update, and delete code values. Codes are user-defined data used to oraganize and filter objects. Codes are defined as combinations of types and values. For example, you can define a "Priority" code type that contains text values, and create a set of potential values for the type for use across projects.
- Batch Create Code Values
- Method: postPath:
/primeapi/restapi/codeValue/batch
- Batch Delete Code Values
- Method: deletePath:
/primeapi/restapi/codeValue/batch
- Batch Update Code Values
- Method: putPath:
/primeapi/restapi/codeValue/batch
- Create a Code Value
- Method: postPath:
/primeapi/restapi/codeValue
- Delete a Code Value
- Method: deletePath:
/primeapi/restapi/codeValue/{id}
- Update a Code Value
- Method: putPath:
/primeapi/restapi/codeValue
- View a Code Value
- Method: getPath:
/primeapi/restapi/codeValue/{id}
- View All Child Code Values in a Code Value Hierarchy
- Method: getPath:
/primeapi/restapi/codeValue/{id}/childrenHierarchy
- View Code Value by Code Type and Workspace
- Method: getPath:
/primeapi/restapi/codeValue/workspaceId/{workspaceId}/codeTypeId/{codeTypeId}
- View Code Values by Code Type
- Method: getPath:
/primeapi/restapi/codeValue/codeType/{id}
- View Code Values by Code Type and Code
- Method: getPath:
/primeapi/restapi/codeValue/code/{code}/codeType/{id}
- View Code Values by Code Type Name
- Method: getPath:
/primeapi/restapi/codeValue/codeType/name/{name}