GET api/SocialDriver/ProfilePicture

Get a signed url for a profile picture

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

GetProfilePictureResponse or a 404 if an image hasn't been uploaded

GetProfilePictureResponse
NameDescriptionTypeAdditional information
ImageURL

The URL of the image

string

None.

ExpiryDate

When the URL will expire

date

None.

Response Formats

application/json, text/json

Sample:
{
  "ImageURL": "sample string 1",
  "ExpiryDate": "2025-04-27T15:37:58.4040365+00:00"
}

application/xml, text/xml

Sample:
<GetProfilePictureResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ImageURL>sample string 1</ImageURL>
  <ExpiryDate>2025-04-27T15:37:58.4040365+00:00</ExpiryDate>
</GetProfilePictureResponse>