GET directory/get-social-media-links

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SocialMediaLinksDto
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Url

string

None.

IsUsable

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "Url": "sample string 3",
    "IsUsable": true
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "Url": "sample string 3",
    "IsUsable": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfSocialMediaLinksDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DrAhmedElMasryApi.Dto">
  <SocialMediaLinksDto>
    <Id>1</Id>
    <IsUsable>true</IsUsable>
    <Name>sample string 2</Name>
    <Url>sample string 3</Url>
  </SocialMediaLinksDto>
  <SocialMediaLinksDto>
    <Id>1</Id>
    <IsUsable>true</IsUsable>
    <Name>sample string 2</Name>
    <Url>sample string 3</Url>
  </SocialMediaLinksDto>
</ArrayOfSocialMediaLinksDto>