Tahdah API
  1. Webhooks
Tahdah API
  • Introduction
  • Webhooks
  • TrustGroups
    • About Trust Groups
    • Endpoints
      • List Trust Groups
      • Create a Trust Group
      • Update Trust Group
      • List Trust Group Legal Entity Members
      • List Trust Group Candidate Members
      • Add Trust Group Member
      • Remove Trust Group Member
    • Webhooks
      • Member Added
      • Member Updated
  • EventCredits
    • Webhooks
      • Event Credits Updated
    • Add Credits to Legal Entity
      PUT
  • Tracker
    • Webhooks
    • Get Candidate Trackers
      GET
    • Get Legal Entity Targets
      GET
  • LearningExperiences
    • EndPoints
      • Register Learners on a Learning Experience
      • Get Learning Experiences
      • Get Learning Experience
    • Webhooks
  • DigitalBadges
    • Issue Digital Badge
      POST
    • Get Badge Templates
      GET
  • LegalEntities
    • Endpoints
      • Legal Entity Details
      • Create Legal Entity
      • Connect a Person to a Legal Entity
    • Webhooks
  • Candidates
    • EndPoints
      • Create Candidate
      • Update a Candidate
      • Delete Candidate
      • Add/Remove tags to a candidate
    • Webhooks
  • Catalogues
    • Endpoints
    • Webhooks
      • Catalogue Entry Created
        POST
  • Schemas
    • Inbound
    • Events
      • EventTemplateCreditRequest
      • EventTemplateCredit
    • Catalogue
      • CatalogueEntry
    • TrustGroupMember
    • temp
    • LegalEntity
    • legalEntityIdentifier
    • Candidate
  1. Webhooks

Catalogue Entry Created

Designing
POST
/catalogue/webhooks
This webhook triggers when a new entry is published to a catalogue that is owned by the subscribed legal entity. Since this is a webhook the Request details below are we what we send you and the Response are what we expect back from you.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "id": 0,
    "catalogueId": 0,
    "experienceId": 0,
    "publishDate": "2019-08-24T14:15:22Z",
    "title": "string",
    "description": "string",
    "bannerImage": "string",
    "abstractContent": "string",
    "code": "string"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.tahdah.me/catalogue/webhooks' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "id": 0,
    "catalogueId": 0,
    "experienceId": 0,
    "publishDate": "2019-08-24T14:15:22Z",
    "title": "string",
    "description": "string",
    "bannerImage": "string",
    "abstractContent": "string",
    "code": "string"
}'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-12-03 14:35:55
Previous
Add/Remove tags to a candidate
Next
EventTemplateCreditRequest
Built with