Issue scoped scouter keys and call the submission pipeline over HTTPS.
| Label | Prefix | Last used | Status | |
|---|---|---|---|---|
Authorization: Bearer <scouter_key>. Submit to https://instapath-api-418107494435.us-central1.run.app/v1/offers/sources/scouter/submissions.Submit Offer text and at least one image in a single multipart request. Processing starts immediately after the response.
| Name | In | Type | Description |
|---|---|---|---|
| Authorization* | header | Bearer <scouter_key> | Scouter API key created in this console. |
| channel | form | string | Submission channel. Use api for importer traffic. |
| text* | form | string | Plain Offer text, notes, or structured copy to extract. |
| images* | form | file | One or more Offer photos. Repeat the field for multiple files. |
curl -sS -X POST "https://instapath-api-418107494435.us-central1.run.app/v1/offers/sources/scouter/submissions" \
-H "Authorization: Bearer <scouter_key>" \
-F "channel=api" \
-F "text=2019 Honda Civic EX for sale in Austin, TX. Price $16,500." \
-F "[email protected];type=image/jpeg"{
"submission": {
"id": "6a7f8d2f-3e4c-4f84-a8cc-4c6d8f884c2c",
"status": "submitted"
},
"processing": {
"state": "queued"
}
}