Data Response Resolver

Data Response Resolver:

The Data response resolver will be used to resolve the data returned by XoroERP, API, or FTP/SFTP.

Input: Response returned by XoroERP, API, or FTP/SFTP.

Output:

Name
Data Type
Description

SkipRecord

bool

Indicates whether to skip the record.

Array

bool

Indicates whether the data is an array.

ResponseData

dynamic

Contains the response data.

FileName

string

Name of the file.(Used in case of FTP/SFTP)

// This is an example of a Data Response Resolver
return {
    Array: true,
    SkipRecord: false,
    ResponseData: {},
    FileName: ''
};

Last updated