Helpdesk

All helpdesk

All helpdesk displays current helpdesk information on your integration. Below is an example using cURL:


    const myHeaders = new Headers();
    myHeaders.append("token", "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpX
    VCJ9.eyJyb2xlaWQiOiI2NDEiLC
    J1c2VySWQiOiJmNDdiY2VjNy1iYjJhLTRhNmUtYTBhZC04MjJjZTQxZGZ
    kNTMiLCJpYXQiOjE3MDk5MTgyMjYsImV4cCI6MTcxMDAwNDYyNn0.9NkX
    GJOdHZLPjzlzFFcqrz1NVKg-q-60soQniIbs4zo");
    
    const requestOptions = {
      method: "GET",
      headers: myHeaders,
    };
    
    fetch("https://api.switch.tulupay.com/helpdesk/all",
     requestOptions)
      .then((response) => response.text())
      .then((result) => console.log(result))
      .catch((error) => console.error(error));

Request details

  • Endpoint:`https://api.switch.tulupay.com/helpdesk/all`
  • Method:`GET`
  • Headers:
  • Content-Type:`application/json`
  • Authorization:`token`
  • Response details

    A successful response will contain a JSON object with all helpdesk details. Here's a simplified example:

    
        {
            "statusCode": "00",
            "status": "success",
            "message": "User created successful",
            "customerid": "848f8e51-fd6b-49f7-80e3-e94a39309f32"
          }
          
        

    Contact Us for Developer Support

    Contact our dedicated developer support team for assistance, guidance, or any questions you have regarding Tuluswitch API integration. We're here to ensure your development experience is smooth and successful.

    Read Our Developer Blog for Insights

    Master the Tuluswitch API with our Developer Blog! Get expert insights, advanced tips, and industry trends beyond the documentation. Stay connected with the developer community to build exceptional payment platforms. Visit the blog now and unlock your full potential!