POST api/v1/teamdata/questions
This method posts a new set of questions in the existing team data.
Request Information
URI Parameters
None.
Body Parameters
Collection of QuestionSetName | Description | Type | Additional information |
---|---|---|---|
ID |
This is the question set ID. |
globally unique identifier |
Required |
TeamDataSetID |
This the unique Team Datasetid. |
globally unique identifier |
Required |
Question |
This is the question that it's set for the question set. |
string |
Required |
Type |
0 = Yes/No, 1 = Date, 2 = Time, 3 = Number, 4 = Text. |
integer |
Required |
DateInsert |
The date of when the dataset is inserted.The format is the following:[YYYY-MM-DDTHH:MM:SSZ].(The system will not validate if the date it's in the past). |
date |
Required |
DateModified |
The date of when the dataset is modified.The format is the following:[YYYY-MM-DDTHH:MM:SSZ].(The system will not validate if the date it's in the past). |
date |
Required |
DateStart |
The date of when the dataset it's set to start.The format is the following:[YYYY-MM-DDTHH:MM:SSZ].(The system will not validate if the date it's in the past). |
date |
Required |
DateEnd |
The date of when the dataset it's set to end.The format is the following:[YYYY-MM-DDTHH:MM:SSZ].(The system will not validate if the date it's in the past). |
date |
Required |
Enabled |
Use Yes or No to enable or disable the question set DateEnd. |
boolean |
Required |
Request Formats
application/json, text/json
[ { "ID": "b1851834-09bd-4a97-816a-d9d667b5ba57", "TeamDataSetID": "3a5543ac-30f0-4890-874b-eec7f128a4ee", "Question": "sample string 3", "Type": 4, "DateInsert": "2024-11-21T08:56:33.9570053+00:00", "DateModified": "2024-11-21T08:56:33.9570053+00:00", "DateStart": "2024-11-21T08:56:33.9570053+00:00", "DateEnd": "2024-11-21T08:56:33.9570053+00:00", "Enabled": true }, { "ID": "b1851834-09bd-4a97-816a-d9d667b5ba57", "TeamDataSetID": "3a5543ac-30f0-4890-874b-eec7f128a4ee", "Question": "sample string 3", "Type": 4, "DateInsert": "2024-11-21T08:56:33.9570053+00:00", "DateModified": "2024-11-21T08:56:33.9570053+00:00", "DateStart": "2024-11-21T08:56:33.9570053+00:00", "DateEnd": "2024-11-21T08:56:33.9570053+00:00", "Enabled": true } ]
application/xml, text/xml
<ArrayOfQuestionSet xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <QuestionSet> <ID>b1851834-09bd-4a97-816a-d9d667b5ba57</ID> <TeamDataSetID>3a5543ac-30f0-4890-874b-eec7f128a4ee</TeamDataSetID> <Question>sample string 3</Question> <Type>4</Type> <DateInsert>2024-11-21T08:56:33.9570053+00:00</DateInsert> <DateModified>2024-11-21T08:56:33.9570053+00:00</DateModified> <DateStart>2024-11-21T08:56:33.9570053+00:00</DateStart> <DateEnd>2024-11-21T08:56:33.9570053+00:00</DateEnd> <Enabled>true</Enabled> </QuestionSet> <QuestionSet> <ID>b1851834-09bd-4a97-816a-d9d667b5ba57</ID> <TeamDataSetID>3a5543ac-30f0-4890-874b-eec7f128a4ee</TeamDataSetID> <Question>sample string 3</Question> <Type>4</Type> <DateInsert>2024-11-21T08:56:33.9570053+00:00</DateInsert> <DateModified>2024-11-21T08:56:33.9570053+00:00</DateModified> <DateStart>2024-11-21T08:56:33.9570053+00:00</DateStart> <DateEnd>2024-11-21T08:56:33.9570053+00:00</DateEnd> <Enabled>true</Enabled> </QuestionSet> </ArrayOfQuestionSet>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
ResponseOfObjectName | Description | Type | Additional information |
---|---|---|---|
Error | Error |
None. |
|
ResponseData | ResponseDataOfObject |
None. |
Response Formats
application/json, text/json
{ "Error": { "ErrorCode": "sample string 1", "ErrorReason": "sample string 2" }, "ResponseData": { "Identification": { "UserId": "sample string 1" }, "Result": "sample string 1", "Detail": {} } }
application/xml, text/xml
<ResponseOfObject xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Error> <ErrorCode>sample string 1</ErrorCode> <ErrorReason>sample string 2</ErrorReason> </Error> <ResponseData> <Result>sample string 1</Result> <Identification> <UserId>sample string 1</UserId> </Identification> <Detail /> </ResponseData> </ResponseOfObject>