This method returns all data items created within this data container.
Request Information
Headers
Name | Description | Type | Additional information |
---|---|---|---|
Authentication |
Authentication token |
string |
Required |
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
containerid |
Data container id. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Name | Description | Type | Additional information |
---|---|---|---|
Data | Collection of ApiTemplateLoadDataItem |
None. |
|
Success | boolean |
None. |
|
Messages | Collection of ErrorMessage |
None. |
Response Formats
application/json
Sample:
{ "Data": [ { "Id": 1, "Name": "TestCar1", "Fields": [ { "FieldName": "Field1", "Value": "string1", "FieldId": 2061 }, { "FieldName": "Field2", "Value": "1", "FieldId": 2062 } ] }, { "Id": 2, "Name": "TestCar2", "Fields": [ { "FieldName": "Field1", "Value": "string2", "FieldId": 2061 }, { "FieldName": "Field2", "Value": "2", "FieldId": 2062 } ] } ], "Success": true, "Messages": [] }