Models Shared with Me
Overview
This API endpoint retrieves a list of models that have been shared with you. These models can be used for document upload recognition.
Request
GET https://api.docai.pro/api/model/info/v2/listSharedToMeModels
Response body
Name | Type | Mandatory | Description |
---|---|---|---|
modelId | string | true | The unique identifier of the model |
modelName | string | true | The name of the model |
description | string | true | Description information of the model |
createTime | long | true | Timestamp of the model's creation time |
updateTime | long | true | Timestamp of the last update time of this model |
Example request
curl -i -X GET https://app.docai.pro/api/model/info/v2/listCreateByMeModels \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $DOCAI_API_KEY"
Example response
{
"code": 200,
"message": null,
"costTime": null,
"data": [
{
"modelId": "e15f9f3adf3b421ab6d91fabe4ac3d65",
"modelName": "Invoice Model",
"description": "description",
"createTime": 1692792479000,
"updateTime": 1695069965000
}
],
"requestId": "a3d513902f554e2d842321d71b9102b6",
"currentTimeMillis": 1695280438196
}