Mappings
Stedi mappings transform JSON documents from one structure to another. For example, you could create a mapping to transform incoming JSON between the following shapes.
{
"product": {
"id": "QL-5490S",
"price": "USD 500"
}
}
{
"product_number": "QL-5490S",
"price": {
"currency": "USD",
"amount": 500
}
}
Use Cases
You may want to use mappings for one or more of the following use cases:
- Transform into or out of EDI-like JSON when using Stedi Core
- An API expects data in a structure that's different than what your own software system uses
- Map data from one transaction set, like a purchase order, directly onto another transaction set, like an invoice
Transform EDI-like JSON
Feedback
Have an idea for something we could improve? Page not clear? We love feedback - send us a message.