Confirm
The Rodin confirm function is designed to confirm current settings and proceed to next step.
For mesh confirmation, only
quality
,symmetric
,version
anduse_hyper
needs to be passed through. By default, the version isv1
.
Authorizations
Body
uuidstringRequired
settingsall ofRequired
Pass a json string as the "settings" field in a form.
versionstringRequired
The version the user chooses
reference_imagestringRequired
The corresponding reference image the user chooses
Responses
201Success
application/json
post
POST /api/task/rodin_confirm HTTP/1.1
Host:
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 148
{
"uuid": "text",
"settings": {
"quality": "high",
"symmetric": true,
"use_hyper": true,
"use_upscale_texture": true
},
"version": "text",
"reference_image": "text"
}
201Success
{
"error": "NO_SUCH_TASK",
"job": {
"uuids": [
[]
],
"subscription_key": "text"
}
}
Last updated