Upvest · Schema

UserIdentifierCreate

Request body for creating a user identifier.

Banking InfrastructureFintechInvestmentsSecuritiesFractional InvestingCustodyWealth Management

Properties

Name Type Description
type string The type of external identifier.
value string The identifier value.
View JSON Schema on GitHub

JSON Schema

investment-api-user-identifier-create-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/upvest/refs/heads/main/json-schema/investment-api-user-identifier-create-schema.json",
  "title": "UserIdentifierCreate",
  "description": "Request body for creating a user identifier.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of external identifier.",
      "example": "standard"
    },
    "value": {
      "type": "string",
      "description": "The identifier value.",
      "example": "example-value"
    }
  },
  "required": [
    "type",
    "value"
  ]
}