Skip to main content
Version: Next

Request DID Documents

GET 

/api/management/registry/didDocuments

Requests all DID Documents that could be retrieved at the Wallet this Control Plane is linked to.

Request

Responses

Schema
    @context object
    oneOf
    string
    idstringrequired
    Example: bdfd4c8e-3a44-4b9f-bc3e-1a8e26e3e99d
    alsoKnownAsstring[]
    Example: ["https://example.com/profile"]
    controller object
    oneOf
    string
    verificationMethod object[]
  • Array [
  • idstringrequired
    Example: bdfd4c8e-3a44-4b9f-bc3e-1a8e26e3e99d
    typestringrequired
    Example: Ed25519VerificationKey2020
    controllerstringrequired
    Example: bdfd4c8e-3a44-4b9f-bc3e-1a8e26e3e99d
    publicKeyJwk object
    algstring
    Example: RS256
    crvstring
    Example: P-256
    estring
    Example: AQAB
    extboolean
    Example: false
    key_opsstring[]
    Example: ["sign","verify"]
    kidstring
    Example: bdfd4c8e-3a44-4b9f-bc3e-1a8e26e3e99d
    ktystringrequired
    Example: RSA
    nstring
    Example: sample_modulus
    usestring
    Example: sig
    xstring
    Example: sample_x_coordinate
    ystring
    Example: sample_y_coordinate
  • ]
  • service object[]
  • Array [
  • idstringrequired
    Example: bdfd4c8e-3a44-4b9f-bc3e-1a8e26e3e99d
    typestringrequired
    Example: LinkedDomains
    serviceEndpoint objectrequired
    oneOf
    string
  • ]
  • publicKey object[]
  • Array [
  • idstringrequired
    Example: bdfd4c8e-3a44-4b9f-bc3e-1a8e26e3e99d
    typestringrequired
    Example: Ed25519VerificationKey2020
    controllerstringrequired
    Example: bdfd4c8e-3a44-4b9f-bc3e-1a8e26e3e99d
    publicKeyJwk object
    algstring
    Example: RS256
    crvstring
    Example: P-256
    estring
    Example: AQAB
    extboolean
    Example: false
    key_opsstring[]
    Example: ["sign","verify"]
    kidstring
    Example: bdfd4c8e-3a44-4b9f-bc3e-1a8e26e3e99d
    ktystringrequired
    Example: RSA
    nstring
    Example: sample_modulus
    usestring
    Example: sig
    xstring
    Example: sample_x_coordinate
    ystring
    Example: sample_y_coordinate
  • ]
  • authentication object[]
  • Array [
  • oneOf
    string
  • ]
  • assertionMethod object[]
  • Array [
  • oneOf
    string
  • ]
  • keyAgreement object[]
  • Array [
  • oneOf
    string
  • ]
  • capabilityInvocation object[]
  • Array [
  • oneOf
    string
  • ]
  • capabilityDelegation object[]
  • Array [
  • oneOf
    string
  • ]

Authorization: oauth2

name: oauth2type: oauth2scopes: controlplane_admin,controlplane_dataplaneflows: {
  "password": {
    "scopes": {
      "controlplane_admin": "controlplane_admin",
      "controlplane_dataplane": "controlplane_dataplane"
    }
  }
}
curl -L 'https://tsg.dataspac.es/api/management/registry/didDocuments' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>'
Request Collapse all
Auth