Jump to content

Recommended Posts

Posted (edited)

I need to add so many orders. So trying to build API.

I can not send "customfields" data.

Here is my code using Node, Express:

app.get("/addorder", (req, res) => {
  try {
    wclient
      .call("AddOrder", {
        clientid: 9480,
        paymentmethod: "paypal",
        pid: [4],
        customfields: [
          btoa(JSON.stringify({ 1: "Username" })),
          btoa(JSON.stringify({ 2: "Password" })),
        ],
        noinvoice: true,
        noinvoiceemail: true,
        noemail: true,
      })
      .then((data) => {
        console.log(data);
        res.send({
          success: true,
          data,
        });
      })
      .catch((error) => {
        console.log(error);
        res.send({
          success: false,
          error: error.message,
        });
      });
  } catch (error) {
    console.error(error);
    res.send({
      success: false,
      error: error.message,
    });
  }
});

It's adding an order, but there is no custom field data on order—something I missed, maybe.

Here is the WHMCS API Reference: https://developers.whmcs.com/api-reference/addorder/

Edited by Md Rasel Khan

Share this post


Link to post
Share on other sites

The customfields needs to be an array of base64 encoded serialized array.

For PHP, you would do it like this:
 

'customfields' => array(base64_encode(serialize(array("1" => "Google"))), base64_encode(serialize(array("1" => "Google")))),

 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated