Healthcare
- Payers
- Transaction enrollment
- Eligibility checks
- Coordination of benefits
- Claim submission
- Claim status
- Remittances
EDI platform
- Transaction
- Interchange
- File execution
- Fragments
- Mappings
- Events
Get Execution Transactions
Fetch a list of transactions for a given file execution, sorted by the date they were created from newest to oldest. Includes the full transaction details.
curl --request GET \
--url https://core.us.stedi.com/2023-08-01/executions/{executionId}/transactions \
--header "Authorization: ${STEDI_API_KEY}"
{
"items": [
{
"direction": "OUTBOUND",
"mode": "production",
"fileExecutionId": "f75168e4-e682-4410-bfec-b5b1541c7f21",
"transactionId": "a15b68ca-fae0-42de-b8a3-f436668b8604",
"processedAt": "2023-08-28T09:00:28.354Z",
"artifacts": [
{
"artifactType": "application/json",
"sizeBytes": 490,
"usage": "input",
"url": "https://core.us.stedi.com/2023-08-01/transactions/a15b68ca-fae0-42de-b8a3-f436668b8604/input"
},
{
"artifactType": "application/edi-x12",
"sizeBytes": 51,
"usage": "output",
"url": "https://core.us.stedi.com/2023-08-01/transactions/a15b68ca-fae0-42de-b8a3-f436668b8604/output"
}
],
"partnership": {
"partnershipId": "i-am-another-merch_this-is-me",
"partnershipType": "x12",
"sender": {
"profileId": "i-am-another-merch"
},
"receiver": {
"profileId": "this-is-me"
}
},
"x12": {
"metadata": {
"interchange": {
"acknowledgmentRequestedCode": "1",
"controlNumber": 2
},
"functionalGroup": {
"controlNumber": 2,
"release": "008010",
"date": "2023-08-28",
"time": "09:00:20",
"functionalIdentifierCode": "PO"
},
"transaction": {
"controlNumber": "1",
"transactionSetIdentifier": "850"
},
"receiver": {
"applicationCode": "THISISME",
"isa": {
"qualifier": "ZZ",
"id": "THISISME"
}
},
"sender": {
"applicationCode": "ANOTHERMERCH",
"isa": {
"qualifier": "14",
"id": "ANOTHERMERCH"
}
}
},
"transactionSetting": {
"guideId": "01H8PSWG4ZD6QPKC9VSD42PQX3",
"transactionSettingId": "005010-850"
}
}
}
]
}
curl --request GET \
--url https://core.us.stedi.com/2023-08-01/executions/{executionId}/transactions \
--header "Authorization: ${STEDI_API_KEY}"
{
"items": [
{
"direction": "OUTBOUND",
"mode": "production",
"fileExecutionId": "f75168e4-e682-4410-bfec-b5b1541c7f21",
"transactionId": "a15b68ca-fae0-42de-b8a3-f436668b8604",
"processedAt": "2023-08-28T09:00:28.354Z",
"artifacts": [
{
"artifactType": "application/json",
"sizeBytes": 490,
"usage": "input",
"url": "https://core.us.stedi.com/2023-08-01/transactions/a15b68ca-fae0-42de-b8a3-f436668b8604/input"
},
{
"artifactType": "application/edi-x12",
"sizeBytes": 51,
"usage": "output",
"url": "https://core.us.stedi.com/2023-08-01/transactions/a15b68ca-fae0-42de-b8a3-f436668b8604/output"
}
],
"partnership": {
"partnershipId": "i-am-another-merch_this-is-me",
"partnershipType": "x12",
"sender": {
"profileId": "i-am-another-merch"
},
"receiver": {
"profileId": "this-is-me"
}
},
"x12": {
"metadata": {
"interchange": {
"acknowledgmentRequestedCode": "1",
"controlNumber": 2
},
"functionalGroup": {
"controlNumber": 2,
"release": "008010",
"date": "2023-08-28",
"time": "09:00:20",
"functionalIdentifierCode": "PO"
},
"transaction": {
"controlNumber": "1",
"transactionSetIdentifier": "850"
},
"receiver": {
"applicationCode": "THISISME",
"isa": {
"qualifier": "ZZ",
"id": "THISISME"
}
},
"sender": {
"applicationCode": "ANOTHERMERCH",
"isa": {
"qualifier": "14",
"id": "ANOTHERMERCH"
}
}
},
"transactionSetting": {
"guideId": "01H8PSWG4ZD6QPKC9VSD42PQX3",
"transactionSettingId": "005010-850"
}
}
}
]
}
Authorizations
A Stedi API Key for authentication.
Path Parameters
A unique identifier for the file execution within Stedi. This ID is included in the file processed event, or you can retrieve it manually from the file's details page within the Stedi app.
Query Parameters
The maximum number of elements to return in a page. You can set this to a maximum of 500 elements. If not specified, the default is 100.
1 < x < 500
A token returned by a previous call to this operation in the nextPageToken
. If not specified, Stedi returns the first page of results.
1 - 1024
Response
A unique identifier for the processed transaction within Stedi. This ID is included in the transaction.processed.v2
event, or you can retrieve it manually from the transaction's details page within the Stedi app.
failed
, succeeded
INBOUND
, OUTBOUND
, UNKNOWN
test
, production
, other
text/csv
, application/edifact
, application/filepart
, application/json
, application/pdf
, text/psv
, text/tsv
, application/edi-x12
, application/xml
, application/zip
input
, metadata
, output
execution
, fragment
, transaction
, fault
Identifier chosen by the user to uniquely identify a partnership.
1 - 81
x12
, edifact
1 - 40
0 < x < 999999999
The location in the document where the problem occurred. May be a single index or a range.
The identifier of the element as seen in the EDI ref.
The element where the business identifier was found. For example, BEG-03
.
The friendly name of the business identifier. For example, Purchase Order Number
.
The token used for pagination
1 - 1024
Was this page helpful?
curl --request GET \
--url https://core.us.stedi.com/2023-08-01/executions/{executionId}/transactions \
--header "Authorization: ${STEDI_API_KEY}"
{
"items": [
{
"direction": "OUTBOUND",
"mode": "production",
"fileExecutionId": "f75168e4-e682-4410-bfec-b5b1541c7f21",
"transactionId": "a15b68ca-fae0-42de-b8a3-f436668b8604",
"processedAt": "2023-08-28T09:00:28.354Z",
"artifacts": [
{
"artifactType": "application/json",
"sizeBytes": 490,
"usage": "input",
"url": "https://core.us.stedi.com/2023-08-01/transactions/a15b68ca-fae0-42de-b8a3-f436668b8604/input"
},
{
"artifactType": "application/edi-x12",
"sizeBytes": 51,
"usage": "output",
"url": "https://core.us.stedi.com/2023-08-01/transactions/a15b68ca-fae0-42de-b8a3-f436668b8604/output"
}
],
"partnership": {
"partnershipId": "i-am-another-merch_this-is-me",
"partnershipType": "x12",
"sender": {
"profileId": "i-am-another-merch"
},
"receiver": {
"profileId": "this-is-me"
}
},
"x12": {
"metadata": {
"interchange": {
"acknowledgmentRequestedCode": "1",
"controlNumber": 2
},
"functionalGroup": {
"controlNumber": 2,
"release": "008010",
"date": "2023-08-28",
"time": "09:00:20",
"functionalIdentifierCode": "PO"
},
"transaction": {
"controlNumber": "1",
"transactionSetIdentifier": "850"
},
"receiver": {
"applicationCode": "THISISME",
"isa": {
"qualifier": "ZZ",
"id": "THISISME"
}
},
"sender": {
"applicationCode": "ANOTHERMERCH",
"isa": {
"qualifier": "14",
"id": "ANOTHERMERCH"
}
}
},
"transactionSetting": {
"guideId": "01H8PSWG4ZD6QPKC9VSD42PQX3",
"transactionSettingId": "005010-850"
}
}
}
]
}