Category / Section
Is there a specific format for the SendLinkValidTill value in the CreateEmbeddedRequestUrl ?
Published:
1 min read
SendLinkValidTill Format in BoldSign API
The SendLinkValidTill
value in the CreateEmbeddedRequestUrl BoldSign API must follow the ISO 8601 format:
π Format: YYYY-MM-DDTHH:mm:ssZ
(Coordinated Universal Time, UTC)
The Z
at the end signifies UTC time, ensuring consistency across different time zones.
Example Usage
If you want the link to expire on March 10, 2025, at 5:00 PM UTC, set:
"SendLinkValidTill": "2025-03-10T17:00:00Z"
This format consists of:
YYYY-MM-DD
β DateT
β Separator between date and timeHH:mm:ss
β Time in 24-hour formatZ
β Denotes UTC
π‘ Custom Time Zones:
If needed, you can specify a time zone offset instead of Z
. For example, to set the time in Indian Standard Time (IST, UTC+5:30):
"SendLinkValidTill": "2025-03-10T22:30:00+05:30"
This ensures precise control over expiration timing, regardless of the userβs local time zone.