GET api/article/GetArticleByComponentByClient?componentId={componentId}&clientId={clientId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| componentId | globally unique identifier |
Required |
|
| clientId | globally unique identifier |
None. |
Body Parameters
None.
Response Information
Resource Description
Article| Name | Description | Type | Additional information |
|---|---|---|---|
| ComponentId | globally unique identifier |
None. |
|
| ClientId | globally unique identifier |
None. |
|
| ParentId | globally unique identifier |
None. |
|
| Header | string |
None. |
|
| Body | string |
None. |
|
| Detail | string |
None. |
|
| InternalNotes | string |
None. |
|
| ComponentTypeId | ComponentType |
None. |
Response Formats
application/json, text/json
Sample:
{
"ComponentId": "e4d5f1c2-0d2a-4f8d-96c0-3d238124250c",
"ClientId": "0e7e445c-a004-42f9-ace0-05accedea7a4",
"ParentId": "930a7853-ce46-4d7f-93a2-6c2b7a4c3d7a",
"Header": "sample string 2",
"Body": "sample string 3",
"Detail": "sample string 4",
"InternalNotes": "sample string 5",
"ComponentTypeId": 0
}
text/html
Sample:
{"ComponentId":"e4d5f1c2-0d2a-4f8d-96c0-3d238124250c","ClientId":"0e7e445c-a004-42f9-ace0-05accedea7a4","ParentId":"930a7853-ce46-4d7f-93a2-6c2b7a4c3d7a","Header":"sample string 2","Body":"sample string 3","Detail":"sample string 4","InternalNotes":"sample string 5","ComponentTypeId":0}
application/xml, text/xml
Sample:
<Article xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KnowledgeBase"> <Body>sample string 3</Body> <ClientId>0e7e445c-a004-42f9-ace0-05accedea7a4</ClientId> <ComponentId>e4d5f1c2-0d2a-4f8d-96c0-3d238124250c</ComponentId> <ComponentTypeId>Not_Set</ComponentTypeId> <Detail>sample string 4</Detail> <Header>sample string 2</Header> <InternalNotes>sample string 5</InternalNotes> <ParentId>930a7853-ce46-4d7f-93a2-6c2b7a4c3d7a</ParentId> </Article>