jagan-parthiban opened a new issue, #7630:
URL: https://github.com/apache/trafficcontrol/issues/7630

   ## Parent Issue: https://github.com/apache/trafficcontrol/issues/5911
   
   Breaking down the parent issue 
https://github.com/apache/trafficcontrol/issues/5911 in smaller issues to raise 
separate, reviewable PRs for each of the services.
   
   ## Traffic Control components affected:
   - Traffic Ops
   - Documentation
   
   
   ## Current behavior:
   Phys_Location Using Deprecated TimeNoMod & TimeLayout
   ```
   curl --request GET \
     --url https://localhost:8443/api/4.1/phys_locations
   
   
   {
        "response": [
                {
                        "address": "Buckingham Palace",
                        "city": "London",
                        "comments": "Buckingham Palace",
                        "email": "[email protected]",
                        "id": 41,
                        "lastUpdated": "2023-07-09 18:56:27+05",
                        "name": "New_Scot",
                        "phone": "0-843-816-6276",
                        "poc": "Her Majesty The Queen Elizabeth Alexandra Mary 
Windsor II",
                        "regionId": 71,
                        "region": "Scotland",
                        "shortName": "new_scot",
                        "state": "Westminster",
                        "zip": "SW1A 1AA"
                },
        ]
   }
   ```
   
   ## Expected behavior:
   Phys_Location  to Use RFC3339 Format
   ```
   curl --request GET \
     --url https://localhost:8443/api/5.0/phys_locations
   
   
   {
        "response": [
                {
                        "address": "Buckingham Palace",
                        "city": "London",
                        "comments": "Buckingham Palace",
                        "email": "[email protected]",
                        "id": 41,
                        "lastUpdated": "2023-07-09T18:56:27.057163+05:30",
                        "name": "New_Scot",
                        "phone": "0-843-816-6276",
                        "poc": "Her Majesty The Queen Elizabeth Alexandra Mary 
Windsor II",
                        "regionId": 71,
                        "region": "Scotland",
                        "shortName": "new_scot",
                        "state": "Westminster",
                        "zip": "SW1A 1AA"
                },
   
        ]
   }
   ```
   
   ## Steps to reproduce:
   Make the above api call to 4.1 version
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to