Upload gzip data with stream API

According to the example provided, I can upload gzip data using the following:

 

echo '"location","username"' | gzip -c | curl 'https://api.domo.com/v1/streams/888/executions/197/part/1' -i -X PUT -H 'Content-Type: text/csv' -H 'Accept: application/json' -H 'Content-Encoding' -H 'Authorization: bearer <my-token>' -d @-

 

It appears to work:

 

{"id":197, "startedAt":"2017-12-04T19:01:48Z", "currentState":"ACTIVE", "createdAt":"2017-12-04T19:01:48Z", "modifiedAt":"2017-12-04T19:01:48Z", "updateMethod":"REPLACE"}%

 

But when the execution is committed:

 

{"id": 197, "startedAt": "2017-12-04T19:01:48Z", "currentState": "ACTIVE", "rows": 0, "bytes": 0, "createdAt": "2017-12-04T19:01:48Z", "modifiedAt": "2017-12-04T19:34:48Z"}

 

There are no rows listed and no data was uploaded. What am I missing?

Comments

  • Is anyone able to help out with this request?

  • Jaketh13
    Jaketh13 Domo Employee

    @user02741 do you have a sample file I could look at (one that doesn't have sensitive data)? The only times I've gotten a successfull PUT request with 0 rows and 0 bytes was when I was uploading a test file that didn't have any actual data.


    Thanks,
    Jake
    **Say "Thanks" by clicking the "heart" in the post that helped you.
    **Please mark the post that solves your problem by clicking on "Accept as Solution"
  • Jaketh13
    Jaketh13 Domo Employee

    @user02741 Any luck with the file?


    Thanks,
    Jake
    **Say "Thanks" by clicking the "heart" in the post that helped you.
    **Please mark the post that solves your problem by clicking on "Accept as Solution"
This discussion has been closed.