Skip to content

RequestProperties

RequestProperties Properties

Property Type Required
Body complex Optional
Headers object Optional
Method string Required

Body

An optional body containing data associated with the request to REST service.

  • type: complex

Body Value

Any following options needs to be fulfilled.

Option 1

Request body in text string

string

Option 2

Raw binary data of an attachment content

  • Content encoding: binary

string

Option 3

Request body in JSON format

object with following properties:

Property Type Required

Option 4

Array type:

All items must be of the type:


Headers

Custom headers to be included as part of the request to REST service.

  • type: object

Method

The HTTP method for the request to REST service. Supported value for methods are: GET, HEAD, POST, PUT, DELETE, PATCH, CONNECT, OPTIONS, and TRACE.

  • type: string