POST/visualize/create_pose_visualization
create_pose_visualization
Request Body
FieldTypeDescription
poseobjectPose (position + quaternion)
namestringResource or visualization name
simulatorstringSimulator identifier
pose_typestringPose representation, e.g. coordinate
extra_paramsnullOptional extra parameters
Response200 OK
FieldTypeDescription
successboolWhether the call succeeded
msgstringStatus or error message
datanullPayload; shape depends on the endpoint
Request bodyJSON
{
  "pose": {
    "position": [0, 0, 0],
    "quaternion": [1, 0, 0, 0]
  },
  "name": "v",
  "simulator": "isaaclab",
  "pose_type": "coordinate",
  "extra_params": null
}
Response200 OK
{
  "success": true,
  "msg": "ok",
  "data": null
}
POST/visualize/create_robot_ee_trajectory_visualization
create_robot_ee_trajectory_visualization
Request Body
FieldTypeDescription
robot_namestringRobot asset name in the scene
joint_trajectoryarraySequence of joint waypoints
joint_namesarrayJoint names aligned with positions
simulatorstringSimulator identifier
pose_typestringPose representation, e.g. coordinate
extra_paramsnullOptional extra parameters
Response200 OK
FieldTypeDescription
successboolWhether the call succeeded
msgstringStatus or error message
datanullPayload; shape depends on the endpoint
Request bodyJSON
{
  "robot_name": "r",
  "joint_trajectory": [[]],
  "joint_names": [],
  "simulator": "isaaclab",
  "pose_type": "coordinate",
  "extra_params": null
}
Response200 OK
{
  "success": true,
  "msg": "ok",
  "data": null
}
POST/visualize/visualize_planner_world_representation
visualize_planner_world_representation
Request Body
FieldTypeDescription
robot_namestringRobot asset name in the scene
visualization_namenullVisualization id, or null
simulatorstringSimulator identifier
Response200 OK
FieldTypeDescription
successboolWhether the call succeeded
msgstringStatus or error message
datanullPayload; shape depends on the endpoint
Request bodyJSON
{
  "robot_name": "r",
  "visualization_name": null,
  "simulator": "isaaclab"
}
Response200 OK
{
  "success": true,
  "msg": "ok",
  "data": null
}
POST/visualize/visualize_planner_robot_representation
visualize_planner_robot_representation
Request Body
FieldTypeDescription
robot_namestringRobot asset name in the scene
visualization_namenullVisualization id, or null
simulatorstringSimulator identifier
Response200 OK
FieldTypeDescription
successboolWhether the call succeeded
msgstringStatus or error message
datanullPayload; shape depends on the endpoint
Request bodyJSON
{
  "robot_name": "r",
  "visualization_name": null,
  "simulator": "isaaclab"
}
Response200 OK
{
  "success": true,
  "msg": "ok",
  "data": null
}
POST/visualize/visualize_target_bounding_box
visualize_target_bounding_box
Request Body
FieldTypeDescription
target_namestringTarget object or marker name
simulatorstringSimulator identifier
Response200 OK
FieldTypeDescription
successboolWhether the call succeeded
msgstringStatus or error message
datanullPayload; shape depends on the endpoint
Request bodyJSON
{
  "target_name": "t",
  "simulator": "isaaclab"
}
Response200 OK
{
  "success": true,
  "msg": "ok",
  "data": null
}