GET/v1/app/pod/certificateRetrieve the certificate that can be use to validate the JWT token obtain through the extension application authentication flow.
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.
openapi: 3.2.0
info:
version: 20.14.1
title: Authenticator Certificate Pod API
description: 'For bots and other on-premise processes to authenticate. Once
authenticated, the bot will be able to use the methods described in
serviceAPI.yaml and agentAPI.yaml.
Connections to the servers will be over
client authenticated TLS, the servers for this API will perform the
authentication by inspecting the certificate presented by the
SSLSocketClient.
There will be two implementations of this API, one on your Pod
and one on the Key Manager. In order to fully authenticate,
an API client will have to call both of these implementations
and pass both of the session tokens returned as headers in all
subsequent requests to the Symphony API.
'
tags:
- name: CertificatePod
paths:
/v1/app/pod/certificate:
get:
summary: 'Retrieve the certificate that can be use to validate the JWT token obtain
through the extension application authentication flow.
'
tags:
- CertificatePod
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PodCertificate'
'401':
description: Client is unauthorized to access this resource
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
'500':
description: Server error, see response body for further details.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
schemas:
Error:
type: object
properties:
code:
type: integer
format: int32
message:
type: string
PodCertificate:
type: object
properties:
certificate:
description: Certificate in PEM format
type: string