Skip to main content

SystemPromptsListSchema

Schema for listing system prompts with pagination.

prompts object[]required

List of system prompts.

  • Array [
  • contentstringrequired

    Content of the system prompt.

    idintegerrequired

    Unique identifier of the system prompt.

    namestringrequired

    Name of the system prompt.

    organization_idintegerrequired

    ID of the organization.

    user_idintegerrequired

    ID of the user who created the prompt.

    created_atstring<date-time>

    ISO 8601 UTC timestamp indicating when the system prompt was created.

    Default: null
    updated_atstring<date-time>

    Last update timestamp.

    Default: null
    uuidstring

    UUID of the prompt.

    Default: null
  • ]
  • SystemPromptsListSchema
    {
    "prompts": [
    {
    "content": "string",
    "id": 0,
    "name": "string",
    "organization_id": 0,
    "user_id": 0,
    "created_at": null,
    "updated_at": null,
    "uuid": null
    }
    ]
    }