GET api/PIMS/GetAllEntity
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Entity| Name | Description | Type | Additional information |
|---|---|---|---|
| EntityID | integer |
None. |
|
| EntityName | string |
None. |
|
| isDelete | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"EntityID": 1,
"EntityName": "sample string 2",
"isDelete": true
},
{
"EntityID": 1,
"EntityName": "sample string 2",
"isDelete": true
}
]
application/xml, text/xml
Sample:
<ArrayOfEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PIMS.DTO">
<Entity>
<EntityID>1</EntityID>
<EntityName>sample string 2</EntityName>
<isDelete>true</isDelete>
</Entity>
<Entity>
<EntityID>1</EntityID>
<EntityName>sample string 2</EntityName>
<isDelete>true</isDelete>
</Entity>
</ArrayOfEntity>