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": "b5813556-9631-45dd-bdde-82bd3207f4c1",
"ClientId": "99004afa-ceb4-41e2-8792-ade3aaf6ff84",
"ParentId": "65be44d1-df6f-47fc-aba4-e96409eaf3ec",
"Header": "sample string 2",
"Body": "sample string 3",
"Detail": "sample string 4",
"InternalNotes": "sample string 5",
"ComponentTypeId": 0
}
text/html
Sample:
{"ComponentId":"b5813556-9631-45dd-bdde-82bd3207f4c1","ClientId":"99004afa-ceb4-41e2-8792-ade3aaf6ff84","ParentId":"65be44d1-df6f-47fc-aba4-e96409eaf3ec","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>99004afa-ceb4-41e2-8792-ade3aaf6ff84</ClientId> <ComponentId>b5813556-9631-45dd-bdde-82bd3207f4c1</ComponentId> <ComponentTypeId>Not_Set</ComponentTypeId> <Detail>sample string 4</Detail> <Header>sample string 2</Header> <InternalNotes>sample string 5</InternalNotes> <ParentId>65be44d1-df6f-47fc-aba4-e96409eaf3ec</ParentId> </Article>