Fetch Supported Presentation Definitions
GET/api/v1/vcp/definitions
Returns a list of supported presentation definitions categorized into two groups: vc1 and vc2. Group names
represent VC Version.
Responses​
- 200
- 405
A list of presentation definitions grouped by category.
- application/json
- Schema
- Example (from schema)
- Example
Schema
vc1 string[]
List of version 1 presentation definitions.
vc2 string[]
List of version 2 presentation definitions.
{
"vc1": [
"PermanentResidentCard",
"CertificateOfNaturalizationCredential"
],
"vc2": [
"EmploymentAuthorizationDocumentCredential",
"PermanentResidentCardCredential",
"MovieTicketCredential"
]
}
{
"vc1": [
"PermanentResidentCard",
"FoodSafetyCertificationCredential",
"CustomerLoyaltyCredential",
"AlumniCredential",
"Iso18013DriversLicenseCredential",
"CertificateOfNaturalizationCredential",
"GS18110CouponCredential",
"FirstResponderCredential",
"EmploymentAuthorizationDocumentCredential",
"OpenBadgeCredential",
"MovieTicketCredential"
],
"vc2": [
"EmploymentAuthorizationDocumentCredential",
"CertificateOfNaturalizationCredential",
"PermanentResidentCardCredential",
"MovieTicketCredential"
]
}
Method not allowed. Only GET requests are supported.
Loading...