A lookup call to get the MGE upload status of frames that have been amended in the last 12-month period.
When accessed via a GET request this API method will return a list of all frame types.
There is no INPUT for this method.
If accessing GET /api/frame/mge-status the following JSON would be returned:
{
"data": [
{
"frame_id": 1234930685,
"media_owner_id": 3,
"media_owner_description": "JCDecaux",
"date_of_last_change": "2022-01-23 14:00:34",
"date_submitted_to_ims": "2022-01-24 21:00:00",
"status": "Rejected - Error Code XX"
},
{
"frame_id": 1234930685,
"media_owner_id": 3,
"media_owner_description": "JCDecaux",
"date_of_last_change": "2022-01-25 14:00:34",
"date_submitted_to_ims": "2022-01-26 21:00:00",
"status": "Successful"
},
{
"frame_id": 1234930685,
"media_owner_id": 3,
"media_owner_description": "JCDecaux",
"date_of_last_change": "2022-02-25 14:00:34",
"date_submitted_to_ims": null,
"status": "Pending"
}
]
}
A "data" element that contains an array of frame types defined as follows:
frame_id - int64 - the unique identifier used within SPACE to reference the frame
media_owner_id - integer - the unique identifier used within SPACE to reference the media owner
media_owner_description - string - a description of the media owner suitable for display to a user
date_of_last_change - string - the date/time the frame was changed and added to the queue
date_submitted_to_ims - string|null - the date/time the frame was submitted for processing, or NULL if still in the queue
status - string - one of the following values "Pending", "Successful" or "Rejected" with some error code if "Rejected"