POST api/v1/render/jobdata
Details of the type of render job that was performed
Request Information
URI Parameters
None.
Body Parameters
RenderJobBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Authentication | AuthenticationModel |
Required |
|
| Request | RenderJobRequestModel |
Required |
Request Formats
application/json, text/json
Sample:
{
"Authentication": {
"Id": "170200123 - sample only, user your ID",
"Key": "467512342123 - sample only, user your Key"
},
"Request": {
"MissionId": "1234",
"MissionGuid": null,
"Email": "larry@newmedia.com",
"JobType": "1 - Economy, 2 - Normal, 3 - Test",
"RunDate": "2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)",
"JobStatus": "1 - Done, 2 - Aborted, 3 - Failed",
"Frames": "12",
"RenderHours": "3456",
"SoftwareName": "BLD/C4D/MAX/MAY",
"SoftwareVersion": "2018",
"JobOriginator": "Mission Control",
"OriginatorVersion": "1.0.123",
"RenderEngine": "Vray/Mental Ray/Arnold/Renderman",
"CreditsUsed": null,
"SaasCreditsUsed": null
}
}
application/xml, text/xml
Sample:
<RenderJobBindingModel 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>
<CreditsUsed i:nil="true" />
<Email>larry@newmedia.com</Email>
<Frames>12</Frames>
<JobOriginator>Mission Control</JobOriginator>
<JobStatus>1 - Done, 2 - Aborted, 3 - Failed</JobStatus>
<JobType>1 - Economy, 2 - Normal, 3 - Test</JobType>
<MissionGuid i:nil="true" />
<MissionId>1234</MissionId>
<OriginatorVersion>1.0.123</OriginatorVersion>
<RenderEngine>Vray/Mental Ray/Arnold/Renderman</RenderEngine>
<RenderHours>3456</RenderHours>
<RunDate>2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)</RunDate>
<SaasCreditsUsed i:nil="true" />
<SoftwareName>BLD/C4D/MAX/MAY</SoftwareName>
<SoftwareVersion>2018</SoftwareVersion>
</Request>
</RenderJobBindingModel>
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>