action cloud_elements_get_object_name_by_child_object_id { label: "Retrieve an {childObjectName}" provider: cloud_elements method: GET path: "/{objectName}/{objectId}/{childObjectName}/{childObjectId}" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } childObjectId: { type: "string" } childObjectName: { type: "string" } objectId: { type: "string" } objectName: { type: "string" } } required: ["Authorization", "childObjectId", "childObjectName", "objectId", "objectName"] additionalProperties: false } output: { type: "object" additionalProperties: true } }