CSV export
Test download and parser handling with CSV rows.
View payload and cURL
Headers
none
Body
id,email,status 1,ava@example.test,active 2,ren@example.test,pending
Create with cURL
curl -i 'https://stubpoint.dev/api/endpoints' -H 'Content-Type: application/json' -d '{
"body": "id,email,status\n1,ava@example.test,active\n2,ren@example.test,pending\n",
"content_type": "text/csv",
"headers": null,
"methods": [
"GET"
],
"status": 200
}'