GET api/v1.0/Friends/GetPendingSentFriendRequests

Returns a List of FriendModel objects representing the pending Friend Requests that the Current User has SENT.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Friend
NameDescriptionTypeAdditional information
FirstName

If the Current Contact is the SENDER of the Friend Request, the RECIPIENT's first name. If the Current Contact is the RECIPIENT of the Friend Request, the SENDER's first name.

string

Required

LastName

If the Current Contact is the SENDER of the Friend Request, the RECIPIENT's last name. If the Current Contact is the RECIPIENT of the Friend Request, the SENDER's last name.

string

Required

DisplayName

If the Current Contact is the SENDER of the Friend Request, the RECIPIENT's display name. If the Current Contact is the RECIPIENT of the Friend Request, the SENDER's display name.

string

Required

LinkToProfile

If the Current Contact is the SENDER of the Friend Request, the link to the RECIPIENT's profile page. If the Current Contact is the RECIPIENT of the Friend Request, the link to the SENDER's profile page.

string

None.

LinkToSmallImage

If the Current Contact is the SENDER of the Friend Request, the link to the RECIPIENT's small image. If the Current Contact is the RECIPIENT of the Friend Request, the link to the SENDER's small image.

string

None.

LinkToLargeImage

If the Current Contact is the SENDER of the Friend Request, the link to the RECIPIENT's large image. If the Current Contact is the RECIPIENT of the Friend Request, the link to the SENDER's large image.

string

None.

IsCompany

If the Current Contact is the SENDER of the Friend Request, if the RECIPIENT is a company. If the Current Contact is the RECIPIENT of the Friend Request, if the SENDER is a company.

boolean

None.

FriendRequestRecordKey

Unique Identifier for the friend request.

globally unique identifier

None.

IsActive

If the friend request is active.

boolean

None.

RequestorContactKey

This field is deprecated, please use RequestedByContactKey instead.

globally unique identifier

None.

RequestedByContactKey

Contact key of the user who initiated the friend request.

globally unique identifier

None.

RequesteeContactKey

Contact key of the user who received the friend request.

globally unique identifier

None.

InvitedOn

DateTime of when friend invite was sent.

date

None.

AcceptedOn

DateTime of when friend invite was accepted. Null if not yet accepted

date

None.

RequestedDate

DateTime of when friend invite was created. Typically synonymous with InvitedOn.

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FirstName": "sample string 1",
    "LastName": "sample string 2",
    "DisplayName": "sample string 3",
    "LinkToProfile": "sample string 4",
    "LinkToSmallImage": "sample string 5",
    "LinkToLargeImage": "sample string 6",
    "IsCompany": true,
    "FriendRequestRecordKey": "b34f5a57-42f3-4dde-b3c7-38d81bc24d93",
    "IsActive": true,
    "RequestorContactKey": "320ccfa5-0ad4-4ffb-a630-0f574eb26f9d",
    "RequestedByContactKey": "47e17442-661e-478e-b7a2-baa4667d466a",
    "RequesteeContactKey": "922e11bb-9349-4884-9a49-4ff5f4e41401",
    "InvitedOn": "2024-03-29T08:08:50.0325516Z",
    "AcceptedOn": "2024-03-29T08:08:50.0325516Z",
    "RequestedDate": "2024-03-29T08:08:50.0325516Z"
  },
  {
    "FirstName": "sample string 1",
    "LastName": "sample string 2",
    "DisplayName": "sample string 3",
    "LinkToProfile": "sample string 4",
    "LinkToSmallImage": "sample string 5",
    "LinkToLargeImage": "sample string 6",
    "IsCompany": true,
    "FriendRequestRecordKey": "b34f5a57-42f3-4dde-b3c7-38d81bc24d93",
    "IsActive": true,
    "RequestorContactKey": "320ccfa5-0ad4-4ffb-a630-0f574eb26f9d",
    "RequestedByContactKey": "47e17442-661e-478e-b7a2-baa4667d466a",
    "RequesteeContactKey": "922e11bb-9349-4884-9a49-4ff5f4e41401",
    "InvitedOn": "2024-03-29T08:08:50.0325516Z",
    "AcceptedOn": "2024-03-29T08:08:50.0325516Z",
    "RequestedDate": "2024-03-29T08:08:50.0325516Z"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFriend xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise">
  <Friend>
    <AcceptedOn>2024-03-29T04:08:50.0325516-04:00</AcceptedOn>
    <DisplayName>sample string 3</DisplayName>
    <FirstName>sample string 1</FirstName>
    <FriendRequestRecordKey>b34f5a57-42f3-4dde-b3c7-38d81bc24d93</FriendRequestRecordKey>
    <InvitedOn>2024-03-29T04:08:50.0325516-04:00</InvitedOn>
    <IsActive>true</IsActive>
    <IsCompany>true</IsCompany>
    <LastName>sample string 2</LastName>
    <LinkToLargeImage>sample string 6</LinkToLargeImage>
    <LinkToProfile>sample string 4</LinkToProfile>
    <LinkToSmallImage>sample string 5</LinkToSmallImage>
    <RequestedByContactKey>47e17442-661e-478e-b7a2-baa4667d466a</RequestedByContactKey>
    <RequestedDate>2024-03-29T04:08:50.0325516-04:00</RequestedDate>
    <RequesteeContactKey>922e11bb-9349-4884-9a49-4ff5f4e41401</RequesteeContactKey>
    <RequestorContactKey>320ccfa5-0ad4-4ffb-a630-0f574eb26f9d</RequestorContactKey>
  </Friend>
  <Friend>
    <AcceptedOn>2024-03-29T04:08:50.0325516-04:00</AcceptedOn>
    <DisplayName>sample string 3</DisplayName>
    <FirstName>sample string 1</FirstName>
    <FriendRequestRecordKey>b34f5a57-42f3-4dde-b3c7-38d81bc24d93</FriendRequestRecordKey>
    <InvitedOn>2024-03-29T04:08:50.0325516-04:00</InvitedOn>
    <IsActive>true</IsActive>
    <IsCompany>true</IsCompany>
    <LastName>sample string 2</LastName>
    <LinkToLargeImage>sample string 6</LinkToLargeImage>
    <LinkToProfile>sample string 4</LinkToProfile>
    <LinkToSmallImage>sample string 5</LinkToSmallImage>
    <RequestedByContactKey>47e17442-661e-478e-b7a2-baa4667d466a</RequestedByContactKey>
    <RequestedDate>2024-03-29T04:08:50.0325516-04:00</RequestedDate>
    <RequesteeContactKey>922e11bb-9349-4884-9a49-4ff5f4e41401</RequesteeContactKey>
    <RequestorContactKey>320ccfa5-0ad4-4ffb-a630-0f574eb26f9d</RequestorContactKey>
  </Friend>
</ArrayOfFriend>