POST api/Images/GetImageTagNames
Request Information
URI Parameters
None.
Body Parameters
RequestGetImageTags| Name | Description | Type | Additional information |
|---|---|---|---|
| DepartmentId | globally unique identifier |
None. |
|
| MemberId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"DepartmentId": "3ad07f7d-0da0-49f7-bf90-daa0e4b29da2",
"MemberId": "31067aa1-149c-4ea0-aa84-c60e76e19982"
}
application/xml, text/xml
Sample:
<RequestGetImageTags xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZTSoft.TPS.Model.Request.Images"> <DepartmentId>3ad07f7d-0da0-49f7-bf90-daa0e4b29da2</DepartmentId> <MemberId>31067aa1-149c-4ea0-aa84-c60e76e19982</MemberId> </RequestGetImageTags>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ExecuteResultOfListOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of string |
None. |
|
| Success | boolean |
None. |
|
| IsSuccess | boolean |
None. |
|
| Msg | string |
None. |
|
| Code | integer |
None. |
|
| StatusCode | string |
None. |
|
| Errors | Dictionary of string [key] and string [value] |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
"sample string 1",
"sample string 2"
],
"Success": true,
"IsSuccess": true,
"Msg": "sample string 3",
"Code": 4,
"StatusCode": "sample string 5",
"Errors": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
}
}
application/xml, text/xml
Sample:
<ExecuteResultOfArrayOfstringuHEDJ7Dj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZTSoft.Core">
<Code>4</Code>
<Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:KeyValueOfstringstring>
<d2p1:KeyValueOfstringstring>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value>sample string 4</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Errors>
<IsSuccess>true</IsSuccess>
<Msg>sample string 3</Msg>
<StatusCode>sample string 5</StatusCode>
<Success>true</Success>
<Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Data>
</ExecuteResultOfArrayOfstringuHEDJ7Dj>