POST api/punters/transfertoken?punterId={punterId}&siteUrl={siteUrl}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
punterId

integer

Required

siteUrl

string

Required

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfBO.MetaData.Client.PunterTransferTokenResponse
NameDescriptionTypeAdditional information
ResponseObject

BO.MetaData.Client.PunterTransferTokenResponse

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": {
    "punterId": 1,
    "guid": "sample string 2",
    "siteUrl": "sample string 3"
  },
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfPunterTransferTokenResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <PunterId>1</PunterId>
    <GUID>sample string 2</GUID>
    <SiteUrl>sample string 3</SiteUrl>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfPunterTransferTokenResponse>