Business Channel Update

When you call Business Channel Service with PUT method, you can update a business_channel on next4biz CRM.

Your request body must be contain 3 properties.

  • tenant_slug This is your subdomain on selphiu URL. For example: if your selphiu domain is “acme.selpihu.com” then your tenant_slug is “acme”
  • access_token next4biz CRM provide an access_token via access_token service. Every access_token expires after 15 minutes. Best Practice, you request a new access_token for each service request.
  • business_channel This is an array includes objects as business_channel property is an object contain you want to update business_channel values. You must set id property. But others are arbitrary. You can sent 500 person each request
Name Value
REST-API METHOD Business Channel Update
HTTP METHOD PUT
RESPONSE TYPE JSON
URL https://api.crm.next4biz.com/business-channel/
REQUEST HEAD Accept: application/json; Content-Type: application/json
ENDPOINT DEFINITION
PUT
SAMPLE REQUEST BODY
{
	"tenant_slug": "acme",
	"access_token": "[YOUR ACCESSTOKEN]",
	"business_channel": [
		{
			"id": "26578",
			"name": "Jhony"
		}
	]
}