GET api/SuggestedTagAPI/GetByCid?cid={cid}

Anfrageinformationen

URI Parameter

NameBeschreibungTypZusätzliche Informationen
cid

integer

Required

Body Parameter

Keine.

Antwortinformationen

Ressourcenbeschreibung

Collection of SuggestedTag
NameBeschreibungTypZusätzliche Informationen
id

integer

None.

tag

string

None.

documentSource

string

None.

categoryId

integer

None.

category

string

None.

percentage

decimal number

None.

count

integer

None.

verified

boolean

None.

isKeyword

boolean

None.

status

boolean

None.

isTagged

boolean

None.

cid

integer

None.

created

date

None.

it_type

integer

None.

specific

string

None.

Antwortformate

application/json, text/json

Sample:
[
  null,
  {
    "id": 1,
    "tag": "sample string 2",
    "documentSource": "sample string 3",
    "categoryId": 4,
    "category": "sample string 5",
    "percentage": 6.0,
    "count": 7,
    "verified": true,
    "isKeyword": true,
    "status": true,
    "isTagged": true,
    "cid": 12,
    "created": "2025-11-03T01:29:48.5266151+01:00",
    "it_type": 14,
    "specific": "true"
  }
]

application/xml, text/xml

Sample:
<SuggestedTags xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://Orchestration.SuggestedTag">
  <SuggestedTag i:nil="true" />
  <SuggestedTag>
    <id>1</id>
    <tag>sample string 2</tag>
    <documentSource>sample string 3</documentSource>
    <categoryId>4</categoryId>
    <category>sample string 5</category>
    <percentage>6</percentage>
    <count>7</count>
    <verified>true</verified>
    <isKeyword>true</isKeyword>
    <status>true</status>
    <isTagged>true</isTagged>
    <cid>12</cid>
    <created>2025-11-03T01:29:48.5266151+01:00</created>
    <it_type>14</it_type>
    <specific>true</specific>
  </SuggestedTag>
</SuggestedTags>