Get all of the schedule layouts for player through API

Is there a way to get all of the layouts that are currently active on a display through API? Basically, is the information in the picture available through API? Or is there another way to get it other than from logging in the CMS and looking at it manually?
schedule

Is there a way to get this data through the XMR, or xmds.php?

Apparently there seems to be a SOAP operation “Schedule”. Would this work and how should I make the query?

Alright, I managed to get the Schedule by using Postman.

I had to make a POST query to https://xiboserver.example.com/xmds.php

Body (format: raw type:XML):

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Schedule xmlns="https://myserver.us.com/api">
      <serverKey>secret</serverKey>
      <hardwareKey>key</hardwareKey>
    </Schedule>
  </soap:Body>
</soap:Envelope>