PulseAI-OpenAPI
  1. Tenant
PulseAI-OpenAPI
  • App
    • README
    • Send Chat Message
      POST
    • File Upload
      POST
    • Stop Generate
      POST
    • Message Feedback
      POST
    • Next Suggested Questions
      GET
    • Get Conversation History Messages
      GET
    • Get Conversations
      GET
    • Delete Conversation
      DELETE
    • Conversation Rename
      POST
    • Speech to Text
      POST
    • Text to Audio
      POST
    • Text to Audio V2
      POST
    • Get Application Information
      GET
    • Get Application Parameters
      GET
    • Get Application Meta Information
      GET
    • Create Chat
      POST
  • Dataset
    • README
    • Create a Document from Text
      POST
    • Create a Document from a File
      POST
    • Create an Empty Knowledge Base
      POST
    • Get Knowledge Base List
      GET
    • Delete a Knowledge Base
      DELETE
    • Update a Document with Text
      POST
    • Update a Document with a File
      POST
    • Get Document Embedding Status (Progress)
      GET
    • Delete a Document
      DELETE
    • Get the Document List of a Knowledge Base
      GET
    • Add Chunks to a Document
      POST
    • Get Chunks from a Document
      GET
    • Update a Chunk in a Document
      POST
    • Delete a Chunk in a Document
      DELETE
    • Retrieve Chunks from a Knowledge Base
      POST
  • Tenant
    • README
    • Get a List of Tenant Space Charactar
      GET
    • Figure txt2img
      POST
    • Get a List of Tenant Space Plot
      GET
    • Get a List of Tenant Space Audio
      GET
  • OpenAPI
    GET
  1. Tenant

Get a List of Tenant Space Plot

GET
https://api-platform.digitpulse.ai/v1/plots
Last modified:2025-01-13 10:05:47

Request

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

Header Params

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 GET 'https://api-platform.digitpulse.ai/v1/plots?page&limit' \
--header 'X-Timestamp: 1739933362' \
--header 'X-Signature: 1739933362' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "data": [
        {
            "id": "string",
            "tenant_id": "string",
            "created_by": "string",
            "created_at": "string",
            "updated_by": "string",
            "updated_at": "string",
            "name": "string",
            "content": "string",
            "image": null,
            "type": "string",
            "plot_config": {
                "first_msg": "string",
                "speak_char": "string",
                "plots": [
                    {
                        "content": "string",
                        "task": "string",
                        "success_conditions": "string",
                        "background_music": "string",
                        "char_ids": [
                            "string"
                        ]
                    }
                ],
                "narration": "string",
                "char_ids": [
                    "string"
                ],
                "user_info": {
                    "user_name": "string",
                    "user_setting": "string"
                }
            }
        }
    ],
    "has_more": true,
    "limit": 0,
    "total": 0,
    "page": 0
}
Modified at 2025-01-13 10:05:47
Previous
Figure txt2img
Next
Get a List of Tenant Space Audio
Built with