POST api/v1/workstation/session/end
Record the fact the customer ended their session
Request Information
URI Parameters
None.
Body Parameters
SessionEndBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Authentication | AuthenticationModel |
Required |
|
| Request | SessionEndRequestModel |
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",
"CurrentDate": "2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)",
"WorkstationType": "3DA/GD",
"MeasureMode": "1/2",
"Index": "283",
"ApplicationsUsed": [
{
"Name": "Autodesk Maya",
"Duration": "02:15:22 - (HH:MM:SS)",
"OwnSoftwareLicenseUsed": "True",
"SoftwareVersion": "2025",
"ServicePack": "SP3",
"ApplicationType": "Application",
"SoftwareId": "1",
"OperatingMode": "BYOSL/Purchased/Test/Trial/Free"
},
{
"Name": "Renderman",
"Duration": "06:45:47 - (HH:MM:SS)",
"OwnSoftwareLicenseUsed": "True",
"SoftwareVersion": "2025",
"ServicePack": "",
"ApplicationType": "Plugin",
"SoftwareId": "11",
"OperatingMode": "BYOSL/Purchased/Test/Trial/Free"
}
]
}
}
application/xml, text/xml
Sample:
<SessionEndBindingModel 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>
<ApplicationsUsed>
<ApplicationUsed>
<ApplicationType>Application</ApplicationType>
<Duration>02:15:22 - (HH:MM:SS)</Duration>
<Name>Autodesk Maya</Name>
<OperatingMode>BYOSL/Purchased/Test/Trial/Free</OperatingMode>
<OwnSoftwareLicenseUsed>True</OwnSoftwareLicenseUsed>
<ServicePack>SP3</ServicePack>
<SoftwareId>1</SoftwareId>
<SoftwareVersion>2025</SoftwareVersion>
</ApplicationUsed>
<ApplicationUsed>
<ApplicationType>Plugin</ApplicationType>
<Duration>06:45:47 - (HH:MM:SS)</Duration>
<Name>Renderman</Name>
<OperatingMode>BYOSL/Purchased/Test/Trial/Free</OperatingMode>
<OwnSoftwareLicenseUsed>True</OwnSoftwareLicenseUsed>
<ServicePack></ServicePack>
<SoftwareId>11</SoftwareId>
<SoftwareVersion>2025</SoftwareVersion>
</ApplicationUsed>
</ApplicationsUsed>
<CurrentDate>2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)</CurrentDate>
<Email>larry@newmedia.com</Email>
<Index>283</Index>
<MeasureMode>1/2</MeasureMode>
<WorkstationType>3DA/GD</WorkstationType>
</Request>
</SessionEndBindingModel>
Response Information
Resource Description
ContactsOutgoingModel| Name | Description | Type | Additional 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>