Registers bring-your-own PDS credentials for a community DID.
Parameters
Output
Encoding
application/jsondid
stringdid
Required
A decentralized identifier (DID).
source
string
Required
No description available.
Errors
AuthRequired
Missing, malformed, or unverifiable service auth. InvalidRequest
A parameter or body field was missing or malformed. UpstreamFailure
A service outside this AppView failed. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"errors": [
{
"name": "AuthRequired",
"description": "Missing, malformed, or unverifiable service auth."
},
{
"name": "InvalidRequest",
"description": "A parameter or body field was missing or malformed."
},
{
"name": "UpstreamFailure",
"description": "A service outside this AppView failed."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"did",
"source"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"source": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did",
"pds",
"identifier",
"password"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"pds": {
"type": "string"
},
"password": {
"type": "string"
},
"identifier": {
"type": "string"
}
}
},
"description": "Registers bring-your-own PDS credentials for a community DID."
}