To authenticate B2B API requests, your should generate an HMAC signature and sends it with each B2B API request.
You will need three headers:
X-B2B-Partner-Id: your partner identifierX-B2B-Api-Key: your public keyX-B2B-Signature: HMAC signature of the signature payloadThe signature is computed from:
Signature payload format
<payload_string>|<signature_timestamp>
Where:
payload_string is either an empty string, or a JSON string of the merged request parameters.signature_timestamp is an integer time bucket: ceil(currentTimeMs / 10_000).payload_stringpayloadObj.payloadObj.