Skip to main content

Get a document by ID

GET 

/api/v1/project/:projectIdentifier/docs/:id

Get a document by ID

Request

Path Parameters

    projectIdentifier stringrequired

    Project identifier (ID or name)

    id numberrequired

    Unique identifier of the documentation

    Example: 1

Responses

Schema

    name stringrequired

    The name of the documentation

    isUrl booleanrequired

    Whether the documentation is an external URL

    readme string

    The content of the README if isUrl is false

    docUrl string

    The URL to the external documentation if isUrl is true

    id numberrequired

    Unique identifier of the documentation

    createdAt date-timerequired

    Timestamp when the doc was created

    updatedAt date-timerequired

    Timestamp when the doc was last updated

Loading...