API Example Attachments Status API
curl --request GET \
--url 'https://sandbox-apigw.optum.com/medicalnetwork/attachments/status/v1/6022b1ad-779a-2956-b2cb-57f3afa9f102?fieldset=summary' \
--header 'Authorization: Bearer eyJraWQiOiIxIiwidHlwIjoiSldUIiwiYWxnI...' \
--header 'accept: application/json'
[
{
"statusCode": "01",
"statusMessage": "TRANSACTION_RECEIVED",
"statusTimeStamp": "2025-10-09T17:11Z",
"documents": [
{
"documentName": "CustomPayerConfig Design.jpg",
"controlNumber": "123456789"
}
]
}
]
curl --request POST \
--url https://sandbox-apigw.optum.com/medicalnetwork/attachments/status/v1/metadata \
--header 'Authorization: Bearer eyJraWQiOiIxIiwidHlwIjoiSldUIiwiYWxnI...' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"transactionReceivedStartDate": "2025-10-09",
"transactionReceivedEndDate": "2025-10-09"
}
'
[
{
"traceId": "6022b1ad-779a-2956-b2cb-57f3afa9f102",
"transactionDetails": {
"submitterId": "999898",
"memberId": "0000000001",
"patientFirstName": "johnone",
"patientLastName": "doeone",
"payerId": "TESTEP01",
"providerId": "1760854442",
"providerFirstName": null,
"providerLastName": "happy doctors group",
"claimStartDate": "2005-05-13",
"claimEndDate": "2005-05-14",
"payerName": "unknown",
"transactionSubmittedDate": "2025-10-09T17:10Z",
"rejectionInformation": null
},
"status": [
{
"statusCode": "01",
"statusMessage": "TRANSACTION_RECEIVED",
"statusTimeStamp": "2025-10-09T17:11Z",
"documents": [
{
"documentName": "CustomPayerConfig Design.jpg",
"controlNumber": "123456789"
}
]
}
]
}
]
Updated about 10 hours ago