Skip to content

List linked DIDs for the current session.

GET
/api/auth/dids
Code sample: Shell / cURL
curl --request GET \
--url https://auth.example.com/api/auth/dids \
--cookie authrim_session=<authrim_session>

Successful JSON response.

Media type application/json
object
dids
required
Array<object>
object
did
string
linked_at
integer
last_used_at
Any of:
integer
raw_attributes
Any of:
object
key
additional properties
count
required
integer
Example
{
"dids": [
{
"did": "did:web:example.com",
"linked_at": 1770000000000,
"last_used_at": 1770000000000,
"raw_attributes": null
}
],
"count": 1
}