GET api/TrustArcForms
Returns all TrustArc Forms.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of SupportObjModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Code | string |
None. |
|
| Active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "a30afb46-7fce-4b2d-bc98-fb4b0704e10d",
"Name": "sample string 2",
"Code": "sample string 3",
"Active": true
},
{
"Id": "a30afb46-7fce-4b2d-bc98-fb4b0704e10d",
"Name": "sample string 2",
"Code": "sample string 3",
"Active": true
}
]
text/xml
Sample:
<ArrayOfSupportObjModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Privacy.Proc.API.Models.Common">
<SupportObjModel>
<Active>true</Active>
<Code>sample string 3</Code>
<Id>a30afb46-7fce-4b2d-bc98-fb4b0704e10d</Id>
<Name>sample string 2</Name>
</SupportObjModel>
<SupportObjModel>
<Active>true</Active>
<Code>sample string 3</Code>
<Id>a30afb46-7fce-4b2d-bc98-fb4b0704e10d</Id>
<Name>sample string 2</Name>
</SupportObjModel>
</ArrayOfSupportObjModel>