Hi I’m trying to use the data import using the raw import API, I’m sending the below curl …
## Request
curl -X "POST" "https://api.graph.cool/simple/v1/civvmhoe91b0q01915qu3osfv/import" \
-H 'Authorization: Bearer ....' \
-H 'Content-Type: application/json' \
-d $'{
"valueType": "nodes",
"values": [
{
"email": "test@test.com",
"id": "0",
"_typeName": "Ticket",
"eventID": "2hjddvdv8dv8dfv8dfv6667d"
},
{
"email": "test1@test1.com",
"id": "1",
"_typeName": "Ticket",
"eventID": "2hjwwwddvde7r7v8dfv6667d"
}
]
}'
and I’m having the next error:
{"requestId":"us-west-2:simple:cjdde4rjqzakq0102w9s6gcsl","error":"Whoops. Looks like an internal server error. Please contact us from the Console (https://console.graph.cool) or via email (support@graph.cool) and include your Request ID: us-west-2:simple:cjdde4rjqzakq0102w9s6gcsl"}
Can anyone help me? thanks a lot