Signing requests
Calculate the Authorization signature for API requests.
Last updated
Was this helpful?
Calculate the Authorization signature for API requests.
Last updated
Was this helpful?
Once you have , you will use them to compute the Authorization signature for all additional requests to the API.
Rightsline utilizes and authenticates all calls by leveraging both and . Instructions for computing the AWS V4 signature can be found .
Although you can construct this request by following the instruction contained above from , Rightsline recommends you utilize the instructions at , which will speed up the process quite a bit.
Postman generates the HTTP Request in the required canonical format, including the code for signing a request in various languages:
HTTP Request Method (GET, POST, PUT, etc.) + Canonical URI + HTTP Protocol (HTTP/1.1)
Div API Key; unique to each Rightsline environment
Requested host URL, which will change depending on the API environment ris[-staging, -int, -pm].rightsline.com
For your implementation, you will need to generate your Signing Key programmatically (Postman is doing it for you in the background). Instruction for calculating the AWS4-HMAC-SHA256 signature can be found here: There are also great examples of how to generate the signature in various programming languages located here:
Date/Time of the request in Amazon’s required format YYYYMMDD’T’HHMMSS’Z’ ()
Authorization Header with calculated Signing Key. ()