/
/Dalil OAuth Resource API
DocsSign in
Sign in
  • APIs
  • Generators
  • Stacks
  • Projects
  • Docs
  • History
  • Schema
Checked 15h ago · Updated 3w ago
Accounts3
Deals3
  • postCreate a new lead
  • getSearch leads
  • getSearch leads by AND criteria
  • putUpdate a lead's phone book information
  • getGet all leads with phone book data
  • postCreate a new contact
  • getSearch contacts
  • getSearch contacts by AND criteria
  • putUpdate a contact's phone book information
  • getGet all contacts with phone book data
  • postCreate a new account
  • postCreate a new deal
  • postProcess email updates and deletions
  • postProcess email updates and deletions
  • postProcess calendar event updates and deletions
  • postProcess initial calendar sync
  • postClean up integration app customer data
  • getGet calendar events
  • postCreate a calendar event
  • deleteDelete a calendar event
  • patchUpdate a calendar event
  • getGet calendars
  • postGenerate access and refresh tokens
  • postRefresh access token
  • getGet entity groups
  • getGet custom fields
  • getGet tags
  • getGet labels
  • getGet stages
  • getGet priorities
  • getAuthorize user
  • postGenerate access and refresh tokens
  • postRefresh access token
  • getGet user info
  • getGet public keys
  • postDelete a user
  • postInvite a user
  • postCreate a new user
  • postUpdate user state

Get public keys

Retrieve public keys for verifying JWTs.

get/oauth/certs

Response

Public keys retrieved successfully

kidstring
usestring
algstring
ktystring
nstring
estring

Example response

[
  {
    "kid": "key-id",
    "use": "sig",
    "alg": "RS256",
    "kty": "RSA",
    "n": "base64-encoded-modulus",
    "e": "AQAB"
  }
]

Changes