Creates a new vectorization task. Upload your image file here to start the process.
POST /api/vectorize/tasks| Parameter | Type | Description |
|---|---|---|
| file | binary | (Required) The image file to be vectorized. |
| logoName | string | (Required) The desired name for the logo. |
| transferMethodKey | string | (Required) The key of the transfer method (e.g., "VAND SPORT"). |
| contactPersonName | string | (Required) Name of the contact person in case of clarifications from the support team. |
| contactPersonEmail | string | (Required) Email of the contact person in case of clarifications from the support team. |
| note | string | (Optional) Any special instructions or notes for the support team. |
| currency | string | (Optional) Preferred currency for pricing (default: "DKK"). |
| organizationId | integer | (Optional) The ID of the organization to create the task for. Defaults to the authenticated vendor's organization. |
Returns the created task object with pending status.
{
"id": 12,
"status": "pending",
"logoName": "New Logo",
"transferMethodKey": "VAND SPORT",
"minPrice": 150.0,
"maxPrice": 300.0,
"currency": "DKK",
"createdAtUtc": "2026-10-27T10:00:00Z",
"finalPrice": null,
"finishedAtUtc": null,
"createdLogos": []
}