api_app_my_workflows_retrieve
GET
/api/app/my_workflows/
const url = 'https://example.com/api/app/my_workflows/';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/app/my_workflows/ \ --header 'Authorization: <Authorization>'获取我的Workflow应用 (废弃 - 请使用GET /api/app/?type=workflow&creator=me)
媒体类型application/json
统一的应用序列化器 - 支持创建和详情查看
object
id
必填
string format: uuid
name
必填
string
slug
必填
string
description
string
type
必填
prompt- 提示词应用workflow- 工作流应用
string
type_display
必填
string
status
draft- 草稿live- 已上线archived- 已归档
string
status_display
必填
string
visibility
private- 私有public- 公开embed- 嵌入
string
visibility_display
必填
string
price_cents
integer
tags
creator
必填
object
id
必填
string format: uuid
email
必填
string format: email
display_name
必填
string
plan
free- 免费版pro- 专业版enterprise- 企业版
string
credits
integer
created_at
必填
string format: date-time
updated_at
必填
string format: date-time
created_at
必填
string format: date-time
updated_at
必填
string format: date-time
示例
{ "type": "prompt", "status": "draft", "visibility": "private", "creator": { "plan": "free" }}