get
https://soipapi.netcorecloud.com/rcs/botinfo
Use this endpoint to retrieve bot metadata without sending a request body.
Pass all required values as query parameters or headers.
200Success Response — Bot details found
{
"status": "success",
"message": "Data fetched successfully",
"client_id": <client_id>,
"data": {
"bot_details": [
{
"botId": "<bot_id>",
"bot_type": "Promotional",
"bot_name": "Netcore Cloud promotional"
}
]
}
}
Success Response — No data found
{
"status": "success",
"message": "No data found",
"client_id": <client_id>,
"data": {
"bots": []
}
}
400Invalid API Key
{
"errors":[
{
"message":"Authorization Failed, invalid token",
"field":"api_key"
}
]
}
Invalid Content Type
{
"errors":[
{
"message":"ContentType not valid",
"field":"ContentType"
}
]
}
