On This Page
Retrieving the Root CA Certificate
When the app is operating in Local mode, you can validate the Acceptance Devices app
server’s certificate by adding the Root CA certificate to your trust store. This action
is required if you want to use an mTLS connection. For more information, see Activating a Secure mTLS Connection.
Use the information in this section to retrieve the Root CA certificate in the
Business Center
or by using an API request. Retrieve the Root CA Certificate in the Business Center
Business Center
Follow these steps to retrieve the Root CA certificate in the Business Center:
- In theBusiness Center, go to the left navigation panel and chooseAcceptance Devices > Activation Codes. The Activation Codes page appears.
- ClickDownload Root CA Certificate. When the download is complete, the browser window shows a download completion message.
- In the local folder directory of your computer, navigate to the Download folder to access the Root CA certificate file.
Retrieve the Root CA Certificate Using a REST API Request
You can use a REST API request to retrieve the Acceptance Devices app server’s Root CA
certificate when the app is operating in Local mode. You would then add the certificate
to your trust store.
You must authenticate each API request you send to a
Cybersource
API by using a REST shared secret key or a REST certificate. For more information about authentication
requirements, see the .Endpoints
Test:
GET
https://apitest.cybersource.com
/dms/v2/devices/certificates/rootcaProduction:
GET
https://api.cybersource.com
/dms/v2/devices/certificates/rootcaRequired Fields to Retrieve the Root CA Certificate Using a REST API Request
The body of the API request is empty.
REST Example: Retrieve the Root CA Certificate Using a REST
API Request
Request
The body of the request is empty.
{ }
Response to a Successful Request
The response includes a PEM–encoded certificate chain.
{ "certificateChain": "-----BEGIN CERTIFICATE-----Your certificate response data appears here.-----END CERTIFICATE-----" }