Skip to main content
GET
/
schema
Retrieve a schema
curl --request GET \
  --url https://server.ownid.com/{appId}/schema \
  --header 'Authorization: Bearer <token>'
{
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successfully retrieved the schema.

The response is of type object.