Aries Postman Demo
October 27, 2025 ยท View on GitHub
In these demos we will use Postman as our controller client.
Contents
Getting Started
Welcome to the Postman demo. This is an addition to the available OpenAPI demo, providing a set of collections to test and demonstrate various aca-py functionalities.
Installing Postman
Download, install and launch postman.
Creating a workspace
Create a new postman workspace labeled "acapy-demo".
Importing the environment
In the environment tab from the left, click the import button. You can paste this link which is the environment file in the ACA-Py repository.
Make sure you have the environment set as your active environment.
Importing the collections
In the collections tab from the left, click the import button.
The following collections are available:
Postman basics
Once you are setup, you will be ready to run postman requests. The order of the request is important, since some values are saved dynamically as environment variables for subsequent calls.
You have your environment where you define variables to be accessed by your collections.
Each collection consists of a series of requests which can be configured independently.
Experimenting with the vc-api endpoints
Make sure you have a demo agent available. You can use the following command to deploy one:
LEDGER_URL=https://test.bcovrin.vonx.io ./run_demo faber --bg
When running for the first time, please allow some time for the images to build.
Register new dids
The first 2 requests for this collection will create 2 did:keys. We will use those in subsequent calls to issue Ed25519Signature2020 and BbsBlsSignature2020 credentials.
Run the 2 did creation requests. These requests will use the /wallet/did/create endpoint.
Issue credentials
For issuing, you must input a w3c compliant json-ld credential and issuance options in your request body. The issuer field must be a registered did from the agent's wallet. The suite will be derived from the did method.
{
"credential": {
"@context": [
"https://www.w3.org/2018/credentials/v1"
],
"type": [
"VerifiableCredential"
],
"issuer": "did:example:123",
"issuanceDate": "2022-05-01T00:00:00Z",
"credentialSubject": {
"id": "did:example:123"
}
},
"options": {}
}
Some examples have been pre-configured in the collection. Run the requests and inspect the results. Experiment with different credentials.
Store and retrieve credentials
Your last issued credential will be stored as an environment variable for subsequent calls, such as storing, verifying and including in a presentation.
Try running the store credential request, then retrieve the credential with the list and fetch requests. Try going back and forth between the issuance endpoints and the storage endpoints to store multiple different credentials.
Verify credentials
You can verify your last issued credential with this endpoint or any issued credential you provide to it.
Prove a presentation
Proving a presentation is an action where a holder will prove ownership of a credential by signing or demonstrating authority over the document.
Verify a presentation
The final request is to verify a presentation.