How to call Agentic AI via Rest API call
Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2025 01:12 AM
We have built some Agentic AI which needs to be called by third party apps via Rest API.
How to call Agentic AI via Rest API call?
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2025 01:21 AM
check this video it will be good starting point for your usecase.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2025 01:14 PM
Try the Agent Invoker API:
var request = {
targetRecordId: "25b65a1c936339100c8a30118bba10c7",
targetTable: "incident",
usecaseId: "78c687369f19d2d02b2d1597d90a1c97",
conversationUser: "46d44a23a9fe19810012d100cca80666",
objective: "Help me resolve the incident INC0010252",
conversationLabel: "INC0010252: Incident Resolution"
};
var aiAgentRuntimeUtil = new AiAgentRuntimeUtil();
var response = aiAgentRuntimeUtil.startAiAgentConversation(request);
gs.info(JSON.stringify(response));
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Tuesday
Sorry i am new to this i create an agent using agent studio how do i find these variable values for that particular agent "usecaseId" i couldn't find this and could you please help me with this

