#HVMP

1 messages ยท Page 1 of 1 (latest)

buoyant salmonBOT
old fable
#

I expect this is not the functionality, but am just looking for confirmation before I "modify" how I construct the idempotency key at current.

#

I plan to make it a composite idempotency key to allow retrying later, for example a key which combines the current one + a timestamp (sort of).

prisma lichen
#

Idempotency key is used to ensure a request is only performed once, so it'll return the same response if it's been performed previously.

#

If the transfer fails and you wish to retry again, same idempotency key can't be re-used

old fable
#

Awesome, ty for confirmation ๐Ÿ™

prisma lichen
#

No problem! Happy to help ๐Ÿ˜„