Conversion API
Conversion APIExporter API
Conversion APIExporter API
  1. Conversion API
  • Get Started
  • Create ticket
    POST
  • Delete ticket
    DELETE
  • Request fix
    POST
  • /ticket delivered
  • /ticket deleted
  • /model modified
Conversion APIExporter API
Conversion APIExporter API
  1. Conversion API

Create ticket

Production
https://api.cubi.casa/conversion
Production
https://api.cubi.casa/conversion
POST
/ticket
Create a ticket for a Cubicasa floor plan by submitting a scan.

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
Body Params application/json

Examples

Responses

🟢201Created
application/json
Ticket successfully created
Body

🟠400Bad Request
🟠403Forbidden
🟠415415
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://api.cubi.casa/conversion/ticket' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "conversion_type": "t3",
    "priority": "fast",
    "webhook_url": "https://domain.com/webhook",
    "customer_info": {
        "text": "Extra information about the scan, instructions for processing.",
        "image": [
            "https://my-image.png"
        ]
    },
    "source_url": [
        "https://my-source.zip"
    ],
    "external_id": "any-id",
    "address": {
        "formatted_address": "123 streetname, City, 12345, State, Country",
        "suite": "A1"
    },
    "linked_ticket": "431ef538-d4b9-465c-b123-d450320128ab"
}'
Response Response Example
201 - Ticket created
{
    "id": "431ef538-d4b9-465c-b123-d450320128ab"
}
Modified at 2025-08-18 08:51:58
Previous
Get Started
Next
Delete ticket
Built with