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": "5ec33f05-2efe-40f5-99d1-c7bcde6217a5",
    "TeamDataSetID": "e3b4b097-7272-4c71-ab96-791d01bb5aad",
    "Question": "sample string 3",
    "Type": 4,
    "DateInsert": "2025-10-31T07:12:12.7548166+00:00",
    "DateModified": "2025-10-31T07:12:12.7548166+00:00",
    "DateStart": "2025-10-31T07:12:12.7548166+00:00",
    "DateEnd": "2025-10-31T07:12:12.7548166+00:00",
    "Enabled": true
  },
  {
    "ID": "5ec33f05-2efe-40f5-99d1-c7bcde6217a5",
    "TeamDataSetID": "e3b4b097-7272-4c71-ab96-791d01bb5aad",
    "Question": "sample string 3",
    "Type": 4,
    "DateInsert": "2025-10-31T07:12:12.7548166+00:00",
    "DateModified": "2025-10-31T07:12:12.7548166+00:00",
    "DateStart": "2025-10-31T07:12:12.7548166+00:00",
    "DateEnd": "2025-10-31T07:12:12.7548166+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>5ec33f05-2efe-40f5-99d1-c7bcde6217a5</ID>
    <TeamDataSetID>e3b4b097-7272-4c71-ab96-791d01bb5aad</TeamDataSetID>
    <Question>sample string 3</Question>
    <Type>4</Type>
    <DateInsert>2025-10-31T07:12:12.7548166+00:00</DateInsert>
    <DateModified>2025-10-31T07:12:12.7548166+00:00</DateModified>
    <DateStart>2025-10-31T07:12:12.7548166+00:00</DateStart>
    <DateEnd>2025-10-31T07:12:12.7548166+00:00</DateEnd>
    <Enabled>true</Enabled>
  </QuestionSet>
  <QuestionSet>
    <ID>5ec33f05-2efe-40f5-99d1-c7bcde6217a5</ID>
    <TeamDataSetID>e3b4b097-7272-4c71-ab96-791d01bb5aad</TeamDataSetID>
    <Question>sample string 3</Question>
    <Type>4</Type>
    <DateInsert>2025-10-31T07:12:12.7548166+00:00</DateInsert>
    <DateModified>2025-10-31T07:12:12.7548166+00:00</DateModified>
    <DateStart>2025-10-31T07:12:12.7548166+00:00</DateStart>
    <DateEnd>2025-10-31T07:12:12.7548166+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>