列出所有项目
GET
/api/v1/projects返回您的项目列表。返回的项目按创建日期排序,最近的项目首先出现。它是一个分页 API,您可以使用 page 参数来获取项目的下一页。默认页面大小为 10。
请求参数
Query 参数
page
string
返回的页码
示例值:
1
order
string
可选
项目列出的顺序。默认为描述。
示例值:
desc
orderBy
string
可选
orderBy 按给定字段对结果进行排序
示例值:
id
width
string
可选
嵌入代码的宽度。默认为 100%。
示例值:
100%25
height
string
可选
嵌入代码的高度。默认为 100%。
示例值:
auto
示例代码
返回响应
成功(200)
没有权限(401)
服务器错误(500)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
响应状态
data
object
必需
current_page
integer
当前页码
data
array [object {15}]
必需
first_page_url
string
第一页网址
from
integer
当前页的第一项编号
last_page
integer
最后页码
last_page_url
string
最后一页的网址
next_page_url
string
下一页网址
path
string
当前页面网址
per_page
integer
每页的项目数
prev_page_url
string
上一页的网址
to
integer
必需
当前页的最后一项编号
total
integer
商品总数
示例
成功示例
{
"status": "success",
"data": {
"current_page": 1,
"data": [
{
"id": 1,
"project_name": "My Project",
"sitemap_path": "https://www.example.com/sitemap.xml",
"is_chat_active": true,
"user_id": 1,
"team_id": 1,
"created_at": "2021-01-01 00:00:00",
"updated_at": "2021-01-01 00:00:00",
"deleted_at": "2021-01-01 00:00:00",
"type": "SITEMAP",
"is_shared": true,
"shareable_slug": "1234567890abcdef1234567890abcdef",
"shareable_link": "string",
"embed_code": "string",
"live_chat_code": "string"
}
],
"first_page_url": "https://app.customgpt.ai/api/v1/users?page=1",
"from": 1,
"last_page": 1,
"last_page_url": "https://app.customgpt.ai/api/v1/users?page=1",
"next_page_url": "https://app.customgpt.ai/api/v1/users?page=1",
"path": "https://app.customgpt.ai/api/v1/users?page=1",
"per_page": 10,
"prev_page_url": "https://app.customgpt.ai/api/v1/users?page=1",
"to": 1,
"total": 1
}
}
最后修改时间: 10 个月前