Skip to content
Platform

Guideline Retrieve API

Endpoint: GET /api/guideline/{guideline_uuid}/

Description

This endpoint retrieves information about a specific guideline identified by the provided UUID.

Parameters

  • Path Parameter:
  • guideline_uuid (string, required): A unique identifier for the guideline to retrieve.

Response

  • Status Code: 200 OK
  • Content-Type: application/json

Response Body:

  • name (string): The name of the guideline.
  • description (string): A brief description of the guideline.
  • content (string): Detailed content of the guideline.

Example Response:

{
  "name": "Guideline Name",
  "description": "Brief description of the guideline",
  "content": "Detailed content of the guideline"
}