Create Vectorize Task

Creates a new vectorization task. Upload your image file here to start the process.

POST /api/vectorize/tasks

Body (multipart/form-data) #

ParameterTypeDescription
filebinary(Required) The image file to be vectorized.
logoNamestring(Required) The desired name for the logo.
transferMethodKeystring(Required) The key of the transfer method (e.g., "VAND SPORT").
contactPersonNamestring(Required) Name of the contact person in case of clarifications from the support team.
contactPersonEmailstring(Required) Email of the contact person in case of clarifications from the support team.
notestring(Optional) Any special instructions or notes for the support team.
currencystring(Optional) Preferred currency for pricing (default: "DKK").
organizationIdinteger(Optional) The ID of the organization to create the task for. Defaults to the authenticated vendor's organization.

Returns #

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": []
}