GET forms/{id}/versions
Gets the diffirent versions of a a form
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id | The Id of the form |
Define this parameter in the request URI. |
Response Information
Returns: A list containing all versions of the form
Response body formats
application/json, text/json
Sample:
[
{
"FormUri": "/forms/6",
"FormContentUri": "/forms/6/versions/4",
"Id": 3,
"Version": 4,
"CreatedAt": "2025-12-08T00:57:50.2469629+01:00",
"FormId": 6,
"State": "sample string 7"
},
{
"FormUri": "/forms/6",
"FormContentUri": "/forms/6/versions/4",
"Id": 3,
"Version": 4,
"CreatedAt": "2025-12-08T00:57:50.2469629+01:00",
"FormId": 6,
"State": "sample string 7"
},
{
"FormUri": "/forms/6",
"FormContentUri": "/forms/6/versions/4",
"Id": 3,
"Version": 4,
"CreatedAt": "2025-12-08T00:57:50.2469629+01:00",
"FormId": 6,
"State": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfFormContentRestGet xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<FormContentRestGet>
<State>sample string 7</State>
<FormUri>/forms/6</FormUri>
<FormContentUri>/forms/6/versions/4</FormContentUri>
<Id>3</Id>
<Version>4</Version>
<CreatedAt>2025-12-08T00:57:50.2469629+01:00</CreatedAt>
<FormId>6</FormId>
</FormContentRestGet>
<FormContentRestGet>
<State>sample string 7</State>
<FormUri>/forms/6</FormUri>
<FormContentUri>/forms/6/versions/4</FormContentUri>
<Id>3</Id>
<Version>4</Version>
<CreatedAt>2025-12-08T00:57:50.2469629+01:00</CreatedAt>
<FormId>6</FormId>
</FormContentRestGet>
<FormContentRestGet>
<State>sample string 7</State>
<FormUri>/forms/6</FormUri>
<FormContentUri>/forms/6/versions/4</FormContentUri>
<Id>3</Id>
<Version>4</Version>
<CreatedAt>2025-12-08T00:57:50.2469629+01:00</CreatedAt>
<FormId>6</FormId>
</FormContentRestGet>
</ArrayOfFormContentRestGet>
