curl --request GET \
--url http://127.0.0.1:9550/v2/all_inboxes
[
{
"agent": {
"full_identity_name": {
"full_name": "<string>",
"node_name": "<string>",
"profile_name": "<string>",
"subidentity_name": "<string>",
"subidentity_type": "Agent"
},
"id": "<string>",
"model": {
"OpenAI": {
"model_type": "<string>"
}
}
},
"custom_name": "<string>",
"datetime_created": "<string>",
"inbox_id": "<string>",
"is_finished": true,
"job_config": {
"custom_prompt": "<string>",
"other_model_params": "<any>",
"seed": 1,
"stream": true,
"temperature": 123,
"top_k": 1,
"top_p": 123
},
"job_scope": "<any>",
"last_message": {
"inbox": "<string>",
"job_message": {
"callback": {
"Job": {}
},
"content": "<string>",
"files_inbox": "<string>",
"job_id": "<string>",
"parent": "<string>",
"sheet_job_data": "<string>",
"workflow_code": "<string>",
"workflow_name": "<string>"
},
"node_api_data": {
"node_message_hash": "<string>",
"node_timestamp": "<string>",
"parent_hash": "<string>"
},
"receiver": "<string>",
"receiver_subidentity": "<string>",
"sender": "<string>",
"sender_subidentity": "<string>"
}
}
]
curl --request GET \
--url http://127.0.0.1:9550/v2/all_inboxes
[
{
"agent": {
"full_identity_name": {
"full_name": "<string>",
"node_name": "<string>",
"profile_name": "<string>",
"subidentity_name": "<string>",
"subidentity_type": "Agent"
},
"id": "<string>",
"model": {
"OpenAI": {
"model_type": "<string>"
}
}
},
"custom_name": "<string>",
"datetime_created": "<string>",
"inbox_id": "<string>",
"is_finished": true,
"job_config": {
"custom_prompt": "<string>",
"other_model_params": "<any>",
"seed": 1,
"stream": true,
"temperature": 123,
"top_k": 1,
"top_p": 123
},
"job_scope": "<any>",
"last_message": {
"inbox": "<string>",
"job_message": {
"callback": {
"Job": {}
},
"content": "<string>",
"files_inbox": "<string>",
"job_id": "<string>",
"parent": "<string>",
"sheet_job_data": "<string>",
"workflow_code": "<string>",
"workflow_name": "<string>"
},
"node_api_data": {
"node_message_hash": "<string>",
"node_timestamp": "<string>",
"parent_hash": "<string>"
},
"receiver": "<string>",
"receiver_subidentity": "<string>",
"sender": "<string>",
"sender_subidentity": "<string>"
}
}
]
Successfully retrieved all smart inboxes
The response is of type object[]
.
Was this page helpful?