About this endpoint
What it does
Converts a JSON array of objects into a CSV string, generating the header row automatically from the object keys. The request body accepts the source data array and an optional delimiter.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| data | Object Array | Yes | The JSON array to convert to CSV. Each item must be an object. |
| delimiter | String | No | The delimiter used between CSV fields. Default: ,. |
Response
Returns a JSON string containing the generated CSV output.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| value | String | Yes | The CSV content produced from the input array of objects. |