v1

latestOpenAPI 3.0.02026-07-17647099.1 KB
Display Methods

Get All Display Methods

Get all the display methods for the provided identity.

get/v2/identities/{identifier}/display-method

Path parameters

identifierstring required

Issuer identifier

Query parameters

pageinteger
Example:1
max_resultsinteger
Example:50

Number of items to fetch on each page. Minimum is 10. Default is 50. No maximum by the moment.

sortstring[]

The minus sign (-) before field means descending order.

Response

Display Method list response

Example response

{
  "items": [
    {
      "id": "8edd8112-c415-11ed-b036-debe37e1cbd6",
      "name": "a display method name",
      "url": "https://someValidURL.com",
      "type": "Iden3BasicDisplayMethodV1"
    }
  ],
  "meta": {
    "total": 1,
    "page": 1,
    "max_results": 50
  }
}