Confirm an information request arrived
curl --request POST \
--url https://api.interchange.io/api/v2/storefront/account-mappings/information-requests/{requestId}/confirm \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/storefront/account-mappings/information-requests/{requestId}/confirm"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.interchange.io/api/v2/storefront/account-mappings/information-requests/{requestId}/confirm', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "<string>",
"caseId": "<string>",
"status": "pending",
"message": "<string>",
"destinationUrl": "<string>",
"url": "<string>",
"expiresAt": "<string>",
"createdBy": "<string>",
"confirmedBy": "<string>",
"confirmedAt": "<string>",
"createdAt": "<string>"
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}Storefront
Confirm an information request arrived
Confirm the requested material arrived in the seller’s process, unblocking the case. A URL click alone is never proof of completion — this is the seller’s explicit confirmation.
POST
/
account-mappings
/
information-requests
/
{requestId}
/
confirm
Confirm an information request arrived
curl --request POST \
--url https://api.interchange.io/api/v2/storefront/account-mappings/information-requests/{requestId}/confirm \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.interchange.io/api/v2/storefront/account-mappings/information-requests/{requestId}/confirm"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.interchange.io/api/v2/storefront/account-mappings/information-requests/{requestId}/confirm', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "<string>",
"caseId": "<string>",
"status": "pending",
"message": "<string>",
"destinationUrl": "<string>",
"url": "<string>",
"expiresAt": "<string>",
"createdBy": "<string>",
"confirmedBy": "<string>",
"confirmedAt": "<string>",
"createdAt": "<string>"
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}{
"data": null,
"error": {
"code": "<string>",
"message": "<string>",
"field": "<string>",
"details": {}
}
}Authorizations
API key or access token
Path Parameters
Response
Confirm an information request arrived
Available options:
pending, confirmed, superseded, cancelled The seller-scoped launch URL: {seller_agent_endpoint}/handoffs/{token}.