Last active
January 3, 2016 05:39
-
-
Save joaojeronimo/8417445 to your computer and use it in GitHub Desktop.
For the CrowdProcess REST API Guide
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl https://api.crowdprocess.com/jobs/<job_id>/errors \ | |
-u "<[email protected]>:<yourpassword>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl https://api.crowdprocess.com/jobs -X POST \ | |
-F "[email protected]" \ | |
-u "<[email protected]>:<yourpassword>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl https://api.crowdprocess.com/jobs/<job_id>/results \ | |
-u "<[email protected]>:<yourpassword>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "369571a7-7caa-44be-b7c6-310614bd5118" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "data": [1, 2, 3] } | |
1 | |
"a" | |
[1, 2, 3] | |
true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Run(d) { | |
return d; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ curl https://api.crowdprocess.com/jobs/<job_id>/tasks -X POST \ | |
-T "tasks" \ | |
-u "<[email protected]>:<yourpassword>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 | |
true | |
"a" | |
[1, 2, 3] | |
{ "data": [1, 2, 3] } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment