StatusList
Create a new status list
Get Started
SSI SDK
OID4VC
- Introduction
- Issuance (OID4VCI)
- Relying Party (OID4VP & SIOPv2)
Status Lists
- Introduction
- REST
- OpenAPI
- StatusList
- StatusHosting
- StatusManagement
Presentation Exchange
W3C VC API
DIF Universal Resolver+Registrar
Mobile Wallet
eIDAS Advanced Electronic Signature Client
Well Known DID client
StatusList
Create a new status list
Creates a new status list and returns its status list credential.
POST
/
status-lists
curl --request POST \
--url https://agent.findynet.demo.sphereon.com/vc/status-lists \
--header 'Content-Type: application/json' \
--data '{
"statusList": {
"type": "OAuthStatusList",
"id": "12345",
"issuer": "did:web:agent.findynet.demo.sphereon.com",
"correlationId": "my-business-key-for-oauth-status-list",
"lenght": 250000,
"proofFormat": "jwt",
"oauthStatusList": {
"bitsPerStatus": 1
}
}
}'
Swaggerhub
You can also use the examples on swaggerhub for an easier to use environment
Body
application/json
Optional correlation ID for tracking purposes.
A unique identifier for the status list (e.g., DID or other unique ID).
A string identifier of the issuer (such as a DID).
An optional reference to the key that will sign the status list.
Optional length (number of entries) for the status list.
The bits per status. Defaults to 1. Allowed values 1,2,4,8
Cryptographic proof format (JWT or Linked Data Proof).
Available options:
jwt
, ldp
The intended purpose for the status list.
Available options:
revocation suspension
The type of status list to create.
Available options:
StatusList2021
, OAuthStatusList
Response
200 - application/json
The response is of type string
.
curl --request POST \
--url https://agent.findynet.demo.sphereon.com/vc/status-lists \
--header 'Content-Type: application/json' \
--data '{
"statusList": {
"type": "OAuthStatusList",
"id": "12345",
"issuer": "did:web:agent.findynet.demo.sphereon.com",
"correlationId": "my-business-key-for-oauth-status-list",
"lenght": 250000,
"proofFormat": "jwt",
"oauthStatusList": {
"bitsPerStatus": 1
}
}
}'