Planning Center Songs API

Show Get https://www.planningcenteronline.com/songs/1.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<song>
  <admin>Integrity Music, Inc.LenSongs Publishing</admin>
  <author>LeBlanc, Lenny \ Baloche, Paul</author>
  <ccli-id type="integer">2672885</ccli-id>
  <copyright>1999 Integrity's Hosanna! Music\LenSongs Publishing</copyright>
  <created-at type="datetime">2006-05-27T01:44:49Z</created-at>
  <created-by-id type="integer">52</created-by-id>
  <hidden type="boolean">false</hidden>
  <id type="integer">195</id>
  <themes>Cross, Kingship, Majesty / God's Attributes, Redeemer / Jesus</themes>
  <title>Above All</title>
  <updated-at type="datetime">2008-05-14T00:58:15Z</updated-at>
  <updated-by-id type="integer">17476</updated-by-id>
  <properties type="array">
    <property>
      <id type="integer">1012433</id>
      <field>Type</field>
      <field_allows_multiple_selections>true</field_allows_multiple_selections>
      <option>Chorus</option>
    </property>
  </properties>
</song>

List Get https://www.planningcenteronline.com/songs.xml

1
2
3
4
5
6
7
8
<songs>
  <song>
    ...
  </song>
  <song>
    ...
  </song>
</songs>

Last changed since Get https://www.planningcenteronline.com/songs.xml?since=2008051208300

  • The since parameter should be in the yyyymmddhhmmss format and in UTC.
1
2
3
4
5
6
7
8
<songs>
  <song>
    ...
  </song>
  <song>
    ...
  </song>
</songs>

Search Get https://www.planningcenteronline.com/songs.xml?title=Above

1
2
3
4
5
6
7
8
<songs>
  <song>
    ...
  </song>
  <song>
    ...
  </song>
</songs>

Create Post https://www.planningcenteronline.com/songs.xml

  • All songs require at least one arrangement so we require you to create one when you create a song.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<song>
  <admin>Integrity Music, Inc.LenSongs Publishing</admin>
  <author>LeBlanc, Lenny \ Baloche, Paul</author>
  <ccli-id type="integer">2672885</ccli-id>
  <copyright>1999 Integrity's Hosanna! Music\LenSongs Publishing</copyright>
  <created-at type="datetime">2006-05-27T01:44:49Z</created-at>
  <created-by-id type="integer">52</created-by-id>
  <hidden type="boolean">false</hidden>
  <themes>Cross, Kingship, Majesty / God's Attributes, Redeemer / Jesus</themes>
  <title>Above All</title>
  <updated-at type="datetime">2008-05-14T00:58:15Z</updated-at>
  <updated-by-id type="integer">17476</updated-by-id>
  <arrangement>
    <name>Default Arrangement</name>
    ...
  </arrangement>
</song>

Update Put https://www.planningcenteronline.com/songs/1.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
<song>
  <admin>Integrity Music, Inc.LenSongs Publishing</admin>
  <author>LeBlanc, Lenny \ Baloche, Paul</author>
  <ccli-id type="integer">2672885</ccli-id>
  <copyright>1999 Integrity's Hosanna! Music\LenSongs Publishing</copyright>
  <created-at type="datetime">2006-05-27T01:44:49Z</created-at>
  <created-by-id type="integer">52</created-by-id>
  <hidden type="boolean">false</hidden>
  <themes>Cross, Kingship, Majesty / God's Attributes, Redeemer / Jesus</themes>
  <title>Above All</title>
  <updated-at type="datetime">2008-05-14T00:58:15Z</updated-at>
  <updated-by-id type="integer">17476</updated-by-id>
</song>