POST api/Party/Revolution/GenerateShortenURL?partyID={partyID}

Generates the party shorten URL for the given party identifier. This requires an active integration provider account for Bitly. Generated shorten URL will be stored in ShoppingShortenURL property of the Party record.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
partyID

The PartyID.

integer

Required

Body Parameters

None.

Response Information

Resource Description

IOperationResult
NameDescriptionTypeAdditional information
IsSuccessful

boolean

None.

ValidationErrors

Dictionary of string [key] and string [value]

None.

Value

Object

None.

Response Formats

application/xml, text/xml

Sample:
<OperationResult>
  <IsSuccessful>False</IsSuccessful>
  <ValidationErrors />
  <Value />
</OperationResult>

application/json, text/json

Sample:
{
  "IsSuccessful": false,
  "ValidationErrors": {}
}