Skip to Main Content

PeopleSoft Enterprise

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

PeopleSoft REST API result

User_YHFA1Mar 27 2020 — edited May 21 2020

Hi,

We have designed an Get API where we are providing the client with a list of dates. The current format is shown below:

    "minimumEffectiveDate": "2018-03-01",

    "availableDates": [

        {

            "date": "2018-03-02"

        },

        {

            "date": "2018-03-03"

        },

        {

            "date": "2018-03-04"

        },

        {

            "date": "2018-03-07"

}


Client requires the dates to show in the following format:

    "minimumEffectiveDate": "2018-03-01",

    "availableDates": [

       

                         "2018-03-02"

                         "2018-03-03"

                         "2018-03-07"

         ]

Any recommendation how this can be achieved? Thanks in advance

Comments
Post Details
Added on Mar 27 2020
3 comments
273 views