Start a conversation

Upload CSV File

Overview

This endpoint allows an admin/super user to upload a CSV file of users for a bulk GDPR job.


Information

/services/v2/users/gdpr/upload.json

- URL (Path/Query) Params
No query params needed; no path param needed.

- Data Params
No data params

- Request Body
{ “content” : <content-of-the-file>}

For Permissions, Requirements, and More Detailed Information:

Reference the GDPR Plugin Docs in the Non-Reference portion of the documentation.

Sample Request

Upload using only emails:

  • cURL
curl -u piero:mypass -H "Accept:application/json" -H "Content-Type: application/json" -X POST "https://apidocs.cloud.answerhub.com/services/v2/users/gdpr/upload.json" -H "Accept:application/json" -d '{ "content" : "emailpedro.zuppelli+18@gmail.compedro.zuppelli+12@gmail.com" }'
curl 
-u piero:mypass 
-H "Accept:application/json" 
-H "Content-Type: application/json"
-X POST "https://apidocs.cloud.answerhub.com/services/v2/users/gdpr/upload.json" 
-H "Accept:application/json" 
-d '{ "content" : "email
pedro.zuppelli+18@gmail.com
pedro.zuppelli+12@gmail.com" }'

Upload using only user IDs:

  • cURL
curl -u piero:mypass -H "Accept:application/json" -H "Content-Type: application/json" -X POST "https://apidocs.cloud.answerhub.com/services/v2/users/gdpr/upload.json" -H "Accept:application/json" -d '{ "content" : "userId1821"}'
curl 
-u piero:mypass 
-H "Accept:application/json" 
-H "Content-Type: application/json"
-X POST "https://apidocs.cloud.answerhub.com/services/v2/users/gdpr/upload.json" 
-H "Accept:application/json" -d '{ "content" : "userId
18
21"}'

Upload using only usernames:

  • cURL
curl -u piero:mypass -H "Accept:application/json" -H "Content-Type: application/json" -X POST "https://apidocs.cloud.answerhub.com/services/v2/users/gdpr/upload.json" -H "Accept:application/json" -d '{"content" : "usernamepz03pz08"}' -v
curl  
-u piero:mypass 
-H "Accept:application/json" 
-H "Content-Type: application/json"
-X POST "https://apidocs.cloud.answerhub.com/services/v2/users/gdpr/upload.json" 
-H "Accept:application/json" 
-d '{"content" : "username
pz03
pz08"}'
-v

Upload using only usernames and IDs:

  • cURL
curl -u piero:mypass -H "Accept:application/json" -H "Content-Type: application/json" -X POST "https://apidocs.cloud.answerhub.com/services/v2/users/gdpr/upload.json" -H "Accept:application/json" -d '{ "content" : "userId,username,pz0318," }' -v
curl 
-u piero:mypass 
-H "Accept:application/json" 
-H "Content-Type: application/json"
-X POST "https://apidocs.cloud.answerhub.com/services/v2/users/gdpr/upload.json" 
-H "Accept:application/json" 
-d '{ "content" : "userId,username
,pz03
18," }'
-v

Expected Responses

- Success Response:
Code: 201 (created)

- Error Response:
All the provided users do not exist: HTTP/1.1 400 Bad Request

Sample Response

Successful Response:

  • JSON
{ "fileId" : <file id> }
{ "fileId" : <file id> }

Error Response:

  • JSON
{"error": "The provided file does not have a valid user."}
{"error": "The provided file does not have a valid user."} 
Choose files or drag and drop files
Was this article helpful?
Yes
No
  1. Priyanka Bhotika

  2. Posted

Comments