Parameters
Configuration options
Options
Description
Example and code snippets
provider: DATA_PROVIDER_REST
# Updates data in the REST Service
# PATCH modifies only the specified fields or properties of the resource.
method: PATCH
# Use your REST service URL
url: https://[your_rest_service]/api/customers
format: text
# Use local execution between the device and the REST service.
useLocalCall: true
# Define parameters with header and body location.
parameters:
accessToken:
location: header
required: true
type: string
# Use manage.jigx.com to define credentials for your solution
value: service.oauth
id:
type: int
location: body
required: true
firstName:
type: string
location: body
required: true
lastName:
type: string
location: body
required: true
companyName:
type: string
location: body
required: true
address:
type: string
location: body
required: false
city:
type: string
location: body
required: false
state:
type: string
location: body
required: false
zip:
type: string
location: body
required: false
phone:
type: string
location: body
required: false
Last updated
Was this helpful?