Skip to main content

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

NameTypeMandatoryDescription
modelIdstringtrueThe unique identifier of the model
modelNamestringtrueThe name of the model
descriptionstringtrueDescription information of the model
createTimelongtrueTimestamp of the model's creation time
updateTimelongtrueTimestamp 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
}