Dassault Systèmes · Schema

200 Post Apikeys

3DEXPERIENCEPLMProduct Lifecycle ManagementCADManufacturingSolidWorksCATIAENOVIAEngineering3D Collaboration

Properties

Name Type Description
hashed_key string Generated hash of the API key (60 characters)
api_key string Plain API key (64 characters)
View JSON Schema on GitHub

JSON Schema

200_post_apikeys.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/dassault/json-schema/200_post_apikeys.json",
  "title": "200 Post Apikeys",
  "type": "object",
  "properties": {
    "hashed_key": {
      "type": "string",
      "description": "Generated hash of the API key (60 characters)",
      "example": "$2b$12$8tcF4MTIDcup3WEo8fFSieGIYEnp/DTLHSTivUCcW2II/VVwRI9Qm",
      "minLength": 60,
      "maxLength": 60
    },
    "api_key": {
      "type": "string",
      "description": "Plain API key (64 characters)",
      "example": "5839bcfabb9e0d20f889f366dbfbbe2973c152cfbe91fae728a9f7e662ce1a2d",
      "minLength": 64,
      "maxLength": 64
    }
  },
  "required": [
    "hashed_key",
    "api_key"
  ]
}