Splunk Dev

Invoking Custom Endpoint from Javascript- Receiving error - {"messages":[{"type":"ERROR","text":"JSON reply had no \"pay

sdawood
Engager

Hi all,

I am trying to call custom endpoint from dashboard JavaScript file on user interaction (This is a setup page).

python_code.py

 

 

class TestAndSaveOrUpdateCredentials(PersistentServerConnectionApplication):
    def __init__(self, command_line, command_arg):
        super(PersistentServerConnectionApplication, self).__init__()

    def handle(self, in_string):
        return {
         "payload":in_string,
         "status": 200
        }

 

 

restmap.conf

 

 

[script:test_endpoint]
match = /testing-123
script = python_code.py
scripttype = persist
handler = python_code.TestAndSaveOrUpdateCredentials
passHttpHeaders = true
output_modes = json
passHttpCookies = true

 

 

web.conf

 

 

[expose:test_endpoint]
methods = GET, POST
pattern = testing-123

 

 

JavaScript

 

 

const appNamespace = {
    owner: "", # Tried with admin,nobady
    app: "", # Tried with app_name
    sharing: "global", # tried with 'app'
}
const http = new splunkjs.SplunkWebHttp();
const service = new splunkjs.Service(
        http,
        appNamespace,
    );
service.get("testing-123")
//service.get("services/testing-123")

 

 

 

 

I am able to call localhost:8089/services/testing-123 from postman, but from JavaScript seeing this error

 

 

{"messages":[{"type":"ERROR","text":"JSON reply had no \"payload\" value"}]}

 

 

 

Please let me know where I am doing wrong

Thanks.

Labels (3)
Tags (1)

jbrocks
Communicator

Hi, did you found a solution?

0 Karma
Get Updates on the Splunk Community!

The OpenTelemetry Certified Associate (OTCA) Exam

What’s this OTCA exam? The Linux Foundation offers the OpenTelemetry Certified Associate (OTCA) credential to ...

From Manual to Agentic: Level Up Your SOC at Cisco Live

Welcome to the Era of the Agentic SOC   Are you tired of being a manual alert responder? The security ...

Splunk Classroom Chronicles: Training Tales and Testimonials (Episode 4)

Welcome back to Splunk Classroom Chronicles, our ongoing series where we shine a light on what really happens ...