POST api/v2.0/Blogs/AddRelatedLink?blogKey={blogKey}
Adds the specified URL as a RelatedLink to the specified Blog.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| blogKey |
BlogKey of the Blog to which the Related Link should be added. |
globally unique identifier |
Required |
Body Parameters
URL to add as the Related Link.
RelatedLinkRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Url | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Url": "sample string 1"
}
application/xml, text/xml
Sample:
<RelatedLinkRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.Request"> <Url>sample string 1</Url> </RelatedLinkRequest>
Response Information
Resource Description
RelatedLink| Name | Description | Type | Additional information |
|---|---|---|---|
| RelatedLinkKey | globally unique identifier |
None. |
|
| ItemKey | globally unique identifier |
None. |
|
| Url | string |
None. |
|
| Contributor | ContactConcise |
None. |
|
| CreatedOn | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"RelatedLinkKey": "0d03f599-6354-4aab-b0e4-1cd8a434fe70",
"ItemKey": "f20cef1c-f414-49b4-8391-c3f6e14c3a84",
"Url": "sample string 3",
"Contributor": {
"LinkToProfile": "sample string 1",
"PictureUrl": "sample string 2",
"ContactKey": "daa6f8a8-75f6-4cd9-87d4-2cfb794de984",
"FirstName": "sample string 4",
"LastName": "sample string 5",
"DisplayName": "sample string 6",
"EmailAddress": "sample string 7",
"ContactStatusCode": "sample string 8",
"PrefixCode": "sample string 9",
"UpdatedOn": "2026-03-14T21:34:01.2656449Z",
"UpdatedByContactKey": "70b2e8d8-643e-4ff7-9d23-c6586e39f94b",
"CompanyName": "sample string 12",
"CompanyTitle": "sample string 13",
"SuffixCode": "sample string 14",
"Designation": "sample string 15",
"LegacyContactKey": "sample string 16",
"InformalName": "sample string 17",
"MiddleName": "sample string 18",
"IsCompany": true,
"CompanyLegacyContactKey": "sample string 20",
"AMSDirectoryOptOut": true,
"HLDirectoryOptOut": true,
"HLContactMeOptOut": true,
"LargePictureUrl": "sample string 24",
"AgreedToTermsDateTime": "2026-03-14T21:34:01.2656449Z"
},
"CreatedOn": "2026-03-14T21:34:01.2656449Z"
}
application/xml, text/xml
Sample:
<RelatedLink xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise">
<Contributor>
<AMSDirectoryOptOut>true</AMSDirectoryOptOut>
<AgreedToTermsDateTime>2026-03-14T17:34:01.2656449-04:00</AgreedToTermsDateTime>
<CompanyLegacyContactKey>sample string 20</CompanyLegacyContactKey>
<CompanyName>sample string 12</CompanyName>
<CompanyTitle>sample string 13</CompanyTitle>
<ContactKey>daa6f8a8-75f6-4cd9-87d4-2cfb794de984</ContactKey>
<ContactStatusCode>sample string 8</ContactStatusCode>
<Designation>sample string 15</Designation>
<DisplayName>sample string 6</DisplayName>
<EmailAddress>sample string 7</EmailAddress>
<FirstName>sample string 4</FirstName>
<HLContactMeOptOut>true</HLContactMeOptOut>
<HLDirectoryOptOut>true</HLDirectoryOptOut>
<InformalName>sample string 17</InformalName>
<IsCompany>true</IsCompany>
<LargePictureUrl>sample string 24</LargePictureUrl>
<LastName>sample string 5</LastName>
<LegacyContactKey>sample string 16</LegacyContactKey>
<LinkToProfile>sample string 1</LinkToProfile>
<MiddleName>sample string 18</MiddleName>
<PictureUrl>sample string 2</PictureUrl>
<PrefixCode>sample string 9</PrefixCode>
<SuffixCode>sample string 14</SuffixCode>
<UpdatedByContactKey>70b2e8d8-643e-4ff7-9d23-c6586e39f94b</UpdatedByContactKey>
<UpdatedOn>2026-03-14T17:34:01.2656449-04:00</UpdatedOn>
</Contributor>
<CreatedOn>2026-03-14T17:34:01.2656449-04:00</CreatedOn>
<ItemKey>f20cef1c-f414-49b4-8391-c3f6e14c3a84</ItemKey>
<RelatedLinkKey>0d03f599-6354-4aab-b0e4-1cd8a434fe70</RelatedLinkKey>
<Url>sample string 3</Url>
</RelatedLink>