The info from my Automation is a TXT file Magic RDS passes it along, my question is where do I make changes to send this enhanced metadata to tunein
BASICS
Requests to the Air API are very simple:
# Update the song now playing on a station
GET
http://air.radiotime.com/Playing.ashx?partnerId=<id>&partnerKey=<key>&id=<stationid>&title=Bad+Romance&artist=Lady+Gaga
Your partnerId replaces <id>, partnerKey replaces <key>, and stationId, including the preliminary 's' replaces <stationid>. Your title and artist information should be set to be updated by your broadcast software in correspondence with the currently playing song.
SPECIFICS
Input
Parameter
Description
title The name of the song
artist The artist associated with the song
album The name of the associated album
commercial Set to true if the now playing broadcast is in commercial rather than a song
Output
Check the status code for success or failure result (200 means success)
NOTES
For now playing updates, please submit only once at the start of the song. Do not use a timer to submit a song, or submit a song multiple times. You may get blocked if you send in too many requests in a short period. Make sure to include an "s" before your station ID. Information does not update on the TuneIn.com site in realtime. Changes to station information can take up to a day to appear. If the station is going to a commercial or other non-song playing period, send the request with the commercial=true flag.