POST api/crm/{crmId}/project/{projectId}/key/{keyId}/links/manual
manul add from trusted resource
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| keyId | integer |
Required |
|
| crmId | string |
Required |
|
| projectId | integer |
Required |
Body Parameters
CreateManualReferenceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| referenceOnPost | Collection of Ref |
None. |
|
| noLink | boolean |
Required |
|
| anchor | string |
None. |
|
| description | string |
None. |
|
| nickName | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"referenceOnPost": {
"$id": "2",
"$values": [
{
"$id": "3",
"reference": "sample string 1",
"comment": "sample string 2"
},
{
"$ref": "3"
}
]
},
"noLink": true,
"anchor": "sample string 2",
"description": "sample string 3",
"nickName": "sample string 4"
}
application/xml, text/xml
Sample:
<CreateManualReferenceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CraudWezom_v1.Models.Users.Reference">
<anchor>sample string 2</anchor>
<description>sample string 3</description>
<nickName>sample string 4</nickName>
<noLink>true</noLink>
<referenceOnPost>
<Ref>
<comment>sample string 2</comment>
<reference>sample string 1</reference>
</Ref>
<Ref>
<comment>sample string 2</comment>
<reference>sample string 1</reference>
</Ref>
</referenceOnPost>
</CreateManualReferenceModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.