Batch Update Ideas
put
/api/restapi/idea/batch
Update multiple ideas with the list of json objects provided.
Request
There are no request parameters for this operation.
Supported Media Types
- application/json
Root Schema : List<ApiEntityIdeaInput>
Type:
arrayTitle:
Show Source
List<ApiEntityIdeaInput>-
Array of:
object ApiEntityIdeaInput
Title:
ApiEntityIdeaInputThis entity represents a Idea object, a unique Idea object can be identified by the following combinations of the fields.- ideaId
- ideaName,workspaceId
- ideaName,workspaceCode
Nested Schema : ApiEntityIdeaInput
Type:
objectTitle:
ApiEntityIdeaInputThis entity represents a Idea object, a unique Idea object can be identified by the following combinations of the fields.
Show Source
- ideaId
- ideaName,workspaceId
- ideaName,workspaceCode
-
benefits: string
Maximum Length:
4000A description of the anticipated benefits of implementing the idea. -
codeValuesIdea: array
codeValuesIdea
The list of code values for an idea. This entity can only be used to assign codeValues or create codeValues on the fly.
-
configuredFields: array
configuredFields
The list of configured fields for an idea.
-
evaluationScore: number
(double)
Details describing the evaluation matrix.
-
ideaCode: string
Maximum Length:
60The unique identifier for the Idea. -
ideaId: integer
(int64)
The system-generated identifier of an idea.
-
ideaName(required): string
Maximum Length:
255The name of the Idea. -
owner: string
Maximum Length:
255The user responsible for the idea. -
problemOrOpportunity: string
Maximum Length:
4000A detailed description of the problem or opportunity the idea addresses. -
proposedSolution: string
Maximum Length:
4000The proposed solution to the problem the idea addresses. -
status: string
Allowed Values:
[ "NEW", "SUBMITTED", "ACCEPTED", "REJECTED", "OWNER_ASSIGNED", "PROPOSAL" ]The status of the idea. Valid values are new, accepted, rejected, and owner assigned. -
statusReason: string
Maximum Length:
4000The reason the idea status was changed. -
workspaceCode: string
Maximum Length:
60The user-specified identifier of a workspace. -
workspaceId(required): integer
(int64)
The unique identifier for the workspace.The workspace object can also be identified by its unique criteria.
Nested Schema : codeValuesIdea
Type:
arrayThe list of code values for an idea. This entity can only be used to assign codeValues or create codeValues on the fly.
Show Source
-
Array of:
object ApiEntityCodeValueIdeaInput
Title:
ApiEntityCodeValueIdeaInputThis entity represents a CodeValueIdea object, a unique CodeValueIdea object can be identified by the following combinations of the fields.- codeValueIdeaId
- codeValueId
- codeTypeCode,codeValueCode
- codeTypeCode,codeValueCode,parentId
- codeValueCode,codeTypeId,parentId
- codeTypeId,codeValueCode
Nested Schema : configuredFields
Type:
arrayThe list of configured fields for an idea.
Show Source
-
Array of:
object ApiEntityIdeaConfiguredFieldValueInput
Title:
ApiEntityIdeaConfiguredFieldValueInputThis entity represents a IdeaConfiguredFieldValue object, a unique IdeaConfiguredFieldValue object can be identified by the following combinations of the fields.- ideaConfiguredFieldValueId
- columnDefinitionId
- columnName
- columnLabel
Nested Schema : ApiEntityCodeValueIdeaInput
Type:
objectTitle:
ApiEntityCodeValueIdeaInputThis entity represents a CodeValueIdea object, a unique CodeValueIdea object can be identified by the following combinations of the fields.
Show Source
- codeValueIdeaId
- codeValueId
- codeTypeCode,codeValueCode
- codeTypeCode,codeValueCode,parentId
- codeValueCode,codeTypeId,parentId
- codeTypeId,codeValueCode
-
action: string
Allowed Values:
[ "DELETE" ]Provide a value for this field during object update to delete code value assigned to the object. -
codeTypeCode: string
Minimum Length:
0Maximum Length:60This field displays the name of a code or value. -
codeTypeId(required): integer
(int64)
The unique identifier for the code type.The code type object can also be identified by its unique criteria.
-
codeValueCode(required): string
Minimum Length:
1Maximum Length:60The unique identifier for the code value. -
codeValueId: integer
(int64)
The unique identifier for the code value.
-
codeValueIdeaId: integer
(int64)
The system-generated identifier of a code value idea assignment.
-
codeValueName: string
Minimum Length:
1Maximum Length:255The name of the code value. -
ideaId: integer
(int64)
The system-generated identifier of an idea.
-
parentId: integer
(int64)
The unique identifier of a parent code value.
-
projectCode: string
Minimum Length:
1Maximum Length:60The code of a Project of a Project CodeType. -
projectId: integer
(int64)
The unique identifier for the project.The project object can also be identified by its unique criteria.
Nested Schema : ApiEntityIdeaConfiguredFieldValueInput
Type:
objectTitle:
ApiEntityIdeaConfiguredFieldValueInputThis entity represents a IdeaConfiguredFieldValue object, a unique IdeaConfiguredFieldValue object can be identified by the following combinations of the fields.
Show Source
- ideaConfiguredFieldValueId
- columnDefinitionId
- columnName
- columnLabel
-
action: string
Allowed Values:
[ "DELETE" ]Provide value for this field during object update to delete the assigned configured field value. -
columnDefinitionId: integer
(int64)
Unique identifier of the column. This value should not be provided in create operation request data, however, it is required for update requests.
-
columnLabel: string
Minimum Length:
1Maximum Length:100The user-specified UDF column label. -
columnName: string
Minimum Length:
1Maximum Length:100The user-specified UDF column name. -
dateValue: string
(date-time)
This holds values for Date type configured fields.
-
ideaConfiguredFieldValueId: integer
(int64)
The unique identifier for the idea configured field.
-
ideaId: integer
(int64)
The system-generated identifier of an idea.
-
numberValue: number
This holds values for Number, Integer and Cost type configured fields. Input for the cost configured field should be provided in the currency of record. For example project level currency in case of Activity, base currency for Company, workspace currency for Funds and record level currency for Project Actuals etc. configured fields.
-
textValue: string
Maximum Length:
4000This holds values for Boolean, List and Text type configured fields.
Examples
Back to Top
Response
200 Response
A collection of object IDs mapped to a canonical link of the object with corresponding warning messages if any warnings were generated while processing the update request. For example - {"links":{"1":"https://[host]:[port]/api/restapi/[object]/1","2":"https://[host]:[port]/api/restapi/[object]/2"},"warnings":[{"primaryKeyName":"objectIdFieldName","uniqueFieldName":"object_code_01","uniqueFieldValue":"objectCodeFieldName","primaryKeyValue":1,"warningMessages":["warning_message_1","warning_message_2"]}]}
400 Response
Invalid input for the idea service.