v8

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-05730512.7 KB
OpenID4VCI Protocol

Re-send the claim email for a pending email-delivery offer.

Resend the claim email for a pending credential offer. Use this when the offer has a recipient email and the holder needs a fresh delivery. The response returns the updated delivery state.

post/v1/credential-offers/{uuid}/resend-email

Path parameters

uuidstring uuid required

Send the offer UUID.

Request body

object required

Response

Didit resent the claim email and returned the offer delivery state.

claim_urlstring uri

Send this web claim URL to the holder when you use Didit's hosted claim flow.

email_send_countinteger

You receive the number of claim emails Didit has sent for this offer.

email_sentboolean

You receive true when Didit sent the claim email.

expires_atstring date-time

You receive the updated timestamp when the offer expires.

offer_idstring uuid

Use this UUID to identify the credential offer.

recipient_emailstring

You receive the email address that Didit sent the claim link to.

Example response

{
  "claim_url": "http://localhost:3012/claim?offer=2c5fadb7-29cf-4005-a80d-7feb56719127",
  "email_send_count": 1,
  "email_sent": true,
  "expires_at": "2026-07-09T23:33:33.665968+00:00",
  "offer_id": "2c5fadb7-29cf-4005-a80d-7feb56719127",
  "recipient_email": "holder@diditcapture.dev"
}