Printago API
POST /v1/profiles/import

Import profiles from a file

Requires: profile.create

Response Schema

ProfileImportResult
materialsoptional
object
createdrequired
string[]
profilesrequired
object
createdrequired
string[]
skippedrequired
string[]
updatedrequired
string[]

Example Response

201 OK — application/json
{
  "profiles": {
    "created": [
      "string"
    ],
    "updated": [
      "string"
    ],
    "skipped": [
      "string"
    ]
  },
  "materials": {
    "created": [
      "string"
    ]
  }
}