Skip to main content
Question

Json format in the integration with IFS Cloud

  • March 31, 2026
  • 0 replies
  • 8 views

Forum|alt.badge.img+9

If a 3rd party system send a request message(POST) to IFS with following Json format:
 

{

    "origin": {

        "postal_code": "75001",

        "country_code": "US"

    },

    "destination": {

        "postal_code": "60007",

        "country_code": "US"

    }
}

IFS Restful API supports Json format based on OData protocol. JSON property names need to have underscores removed and use PascalCase (uppercase first letter), is my understanding correct? If yes, it means the request message should be like below format.

{

    "Origin": {

        "PostalCode": "75001",

        "CountryCode": "US"

    },

    "Destination": {

        "PostalCode": "60007",

        "CountryCode": "US"

    }

}

My question is how can we support such format which posted by 3rd party sevice? Is there any settings can achieve this in IFS Connect? Thank you!