UnLatch Customer

This function is used to unlatch a customer entity to a particular NetSuite account ID.

Request Parameters

PropertyDescriptionTypeRequired
fusebillIdThis ID value uniquely identifies this customer record in the Fusebill system.IntegerYes
netsuiteIdThe NetSuite Account ID to be associated with this customer.StringYes
Examples
curl -X POST "https://secure.fusebill.com/v1/NetSuite/UnLatchCustomer" \
	-H "Content-Type: application/json" \
	-H "Authorization: Basic {APIKey}" \
	-d "{fusebillId:{customerId},netSuiteId:'{NetSuiteId}'}"
{
      "fusebillId":12717595,
      "netsuiteId":"0014100000JJ3wt",
 }
Response
{
    "ErrorId": 0,
    "HttpStatusCode": 400,
    "Errors": [
        {
            "Key": "Api Error",
            "Value": "NetSuite Account 1 does not exist."
        }
    ]
}
Language
Authorization