Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issuance endpoint is /credentials #42

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions specifications/M1/credential.issuance.protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ client. If the request is approved, the VC will be issued to the client asynchro

Communication with the `Credential Request Endpoint` MUST utilize TLS.

The credential request endpoint MUST be available under the `POST` method at `/credential` relative to the base URL of
The credential request endpoint MUST be available under the `POST` method at `/credentials` relative to the base URL of
the
issuer.

Expand Down Expand Up @@ -92,7 +92,7 @@ The Credential Request `POST` body MUST be a `CredentialRequestMessage` JSON obj
The following is a non-normative example of a `CredentialRequestMessage`:

```
POST /credential HTTP/1.1
POST /credentials HTTP/1.1
Host: server.example.com
Content-Type: application/json
Authorization: Bearer ......
Expand Down Expand Up @@ -152,7 +152,7 @@ The Credential Offer `POST` body MUST be a `CredentialOfferMessage` JSON object
The following is a non-normative example of a credential offer request:

```
POST /credential HTTP/1.1
POST /credentials HTTP/1.1
Host: server.example.com
Content-Type: application/json
Authorization: Bearer ......
Expand Down