POST api/v1/customers/me/socialCredentials
Request Information
URI Parameters
None.
Body Parameters
CusSocialAccountDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| OrganizationCode | string |
None. |
|
| ExternalId | string |
None. |
|
| ExternalName | string |
None. |
|
| ExternalLink | string |
None. |
|
| LastConnectionDate | date |
None. |
|
| LastSyncDate | date |
None. |
|
| Followers | integer |
None. |
|
| IsFollowingOrgAccount | boolean |
None. |
|
| AccessToken | string |
None. |
|
| SecretAccessToken | string |
None. |
|
| Provider | SocialProvider |
None. |
|
| IsTokenValid | boolean |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| LikedMessages | Collection of LikedMessage |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "4f9e02de-cbbc-41ad-ad3f-16c6cb968ef4",
"organizationCode": "sample string 2",
"externalId": "sample string 3",
"externalName": "sample string 4",
"externalLink": "sample string 5",
"lastConnectionDate": "2026-02-04T03:11:32.7341981+00:00",
"lastSyncDate": "2026-02-04T03:11:32.7341981+00:00",
"followers": 7,
"isFollowingOrgAccount": true,
"accessToken": "sample string 9",
"secretAccessToken": "sample string 10",
"provider": 0,
"isTokenValid": true,
"customerId": "11078e67-adf5-4306-a903-481ed7aa8c0e",
"likedMessages": [
{
"text": "sample string 1",
"date": "2026-02-04T03:11:32.7341981+00:00"
},
{
"text": "sample string 1",
"date": "2026-02-04T03:11:32.7341981+00:00"
}
]
}
application/xml, text/xml
Sample:
<CusSocialAccountDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos">
<AccessToken>sample string 9</AccessToken>
<CustomerId>11078e67-adf5-4306-a903-481ed7aa8c0e</CustomerId>
<ExternalId>sample string 3</ExternalId>
<ExternalLink>sample string 5</ExternalLink>
<ExternalName>sample string 4</ExternalName>
<Followers>7</Followers>
<Id>4f9e02de-cbbc-41ad-ad3f-16c6cb968ef4</Id>
<IsFollowingOrgAccount>true</IsFollowingOrgAccount>
<IsTokenValid>true</IsTokenValid>
<LastConnectionDate>2026-02-04T03:11:32.7341981+00:00</LastConnectionDate>
<LastSyncDate>2026-02-04T03:11:32.7341981+00:00</LastSyncDate>
<LikedMessages>
<LikedMessage>
<Date>2026-02-04T03:11:32.7341981+00:00</Date>
<Text>sample string 1</Text>
</LikedMessage>
<LikedMessage>
<Date>2026-02-04T03:11:32.7341981+00:00</Date>
<Text>sample string 1</Text>
</LikedMessage>
</LikedMessages>
<OrganizationCode>sample string 2</OrganizationCode>
<Provider>Facebook</Provider>
<SecretAccessToken>sample string 10</SecretAccessToken>
</CusSocialAccountDto>
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.