Submit Proof URL

Documentation of Submit Proof URL For External Template Campaign

Http Request
POST https://ttv.microworkers.com/dotask/submitProof/:campaignId/:campaignType
Path Parameters
campaignId
string
The Id of campaign to perform submit proof. E.g. 2b6e96e3131f
campaignType
string
The type of campaign to perform submit proof. Allowed values: B, HG
B stands for Basic Campaign
HG stands for Hire Group Campaign
POST Parameters
Parameters (optional)
string
The form may have input values of which will be stored in Microworkers side. You can specify input values as parameters list while creation of an external campaign.
Example of Form
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<!-- In this form action Url, 2b6e96e3131f is campaignId value and HG is campaignType. -->
<form method="post" target="_parent"
action="https://ttv.microworkers.com/dotask/submitProof/2b6e96e3131f/HG" id="form">
<!-- In this example, unique_id parameter is used as form POST parameters.
The value of unique_id will be stored in Microworkers. -->
<input type="hidden" name="unique_id" value="12345678">
<input type="submit">
</form>
</body>
</html>
Looking for an API?
Submit proof API is available for external template campaign to submit answers from your web server.