POST api/v1/trial/signup

Record the fact the customer signed up for a trial

Request Information

URI Parameters

None.

Body Parameters

ProductSignupContactBindingModel
NameDescriptionTypeAdditional information
Authentication

AuthenticationModel

Required

Request

ProductSignupRequestModel

Required

Request Formats

application/json, text/json

Sample:
{
  "Authentication": {
    "Id": "170200123 - sample only, user your ID",
    "Key": "467512342123 - sample only, user your Key"
  },
  "Request": {
    "Email": "larry@newmedia.com",
    "SignupDate": "2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)",
    "Duration": "3 (number of days)",
    "TrialType": "isv/software/workstation",
    "ISVName": "Sample ISV",
    "SoftwareId": "12",
    "Software": null,
    "EventCode": null
  }
}

application/xml, text/xml

Sample:
<ProductSignupContactBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiModels">
  <Authentication xmlns:d2p1="http://schemas.datacontract.org/2004/07/Api.Models">
    <d2p1:Id>170200123 - sample only, user your ID</d2p1:Id>
    <d2p1:Key>467512342123 - sample only, user your Key</d2p1:Key>
  </Authentication>
  <Request>
    <Duration>3 (number of days)</Duration>
    <Email>larry@newmedia.com</Email>
    <EventCode i:nil="true" />
    <ISVName>Sample ISV</ISVName>
    <SignupDate>2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)</SignupDate>
    <Software xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true" />
    <SoftwareId>12</SoftwareId>
    <TrialType>isv/software/workstation</TrialType>
  </Request>
</ProductSignupContactBindingModel>

Response Information

Resource Description

ContactsOutgoingModel
NameDescriptionTypeAdditional information
Message

MessageModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": {
    "Code": "(2 digit code reflecting result of request - 00 is good)",
    "Description": "(Message response in text depending upon request/result of request)"
  }
}

application/xml, text/xml

Sample:
<ContactsOutgoingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiModels">
  <Message xmlns:d2p1="http://schemas.datacontract.org/2004/07/Api.Models">
    <d2p1:Code>(2 digit code reflecting result of request - 00 is good)</d2p1:Code>
    <d2p1:Description>(Message response in text depending upon request/result of request)</d2p1:Description>
  </Message>
</ContactsOutgoingModel>