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 QuestionSet| Name | 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": "991d50c9-6cb3-4004-a76f-6a6e81b53d72",
"TeamDataSetID": "5094dbc8-0563-43fd-8916-9b29d8670d81",
"Question": "sample string 3",
"Type": 4,
"DateInsert": "2025-10-30T05:28:44.1421312+00:00",
"DateModified": "2025-10-30T05:28:44.1421312+00:00",
"DateStart": "2025-10-30T05:28:44.1421312+00:00",
"DateEnd": "2025-10-30T05:28:44.1421312+00:00",
"Enabled": true
},
{
"ID": "991d50c9-6cb3-4004-a76f-6a6e81b53d72",
"TeamDataSetID": "5094dbc8-0563-43fd-8916-9b29d8670d81",
"Question": "sample string 3",
"Type": 4,
"DateInsert": "2025-10-30T05:28:44.1421312+00:00",
"DateModified": "2025-10-30T05:28:44.1421312+00:00",
"DateStart": "2025-10-30T05:28:44.1421312+00:00",
"DateEnd": "2025-10-30T05:28:44.1421312+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>991d50c9-6cb3-4004-a76f-6a6e81b53d72</ID>
<TeamDataSetID>5094dbc8-0563-43fd-8916-9b29d8670d81</TeamDataSetID>
<Question>sample string 3</Question>
<Type>4</Type>
<DateInsert>2025-10-30T05:28:44.1421312+00:00</DateInsert>
<DateModified>2025-10-30T05:28:44.1421312+00:00</DateModified>
<DateStart>2025-10-30T05:28:44.1421312+00:00</DateStart>
<DateEnd>2025-10-30T05:28:44.1421312+00:00</DateEnd>
<Enabled>true</Enabled>
</QuestionSet>
<QuestionSet>
<ID>991d50c9-6cb3-4004-a76f-6a6e81b53d72</ID>
<TeamDataSetID>5094dbc8-0563-43fd-8916-9b29d8670d81</TeamDataSetID>
<Question>sample string 3</Question>
<Type>4</Type>
<DateInsert>2025-10-30T05:28:44.1421312+00:00</DateInsert>
<DateModified>2025-10-30T05:28:44.1421312+00:00</DateModified>
<DateStart>2025-10-30T05:28:44.1421312+00:00</DateStart>
<DateEnd>2025-10-30T05:28:44.1421312+00:00</DateEnd>
<Enabled>true</Enabled>
</QuestionSet>
</ArrayOfQuestionSet>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
ResponseOfObject| Name | 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>