Planning Center Arrangements API

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<arrangement>
  <bpm type="integer" nil="true"/>
  <chord-chart></chord-chart>
  <chord-chart-columns type="integer">1</chord-chart-columns>
  <chord-chart-font>[Helvetica | Courier | Times-Roman]</chord-chart-font>
  <chord-chart-font-size type="integer">
    [10 | 11 | 12 | 13 | 14 | 16 | 18 | 20 | 24 | 28 | 32 | 36 | 42 | 48]
  </chord-chart-font-size>
  <chord-chart-key/></chord-chart-key>
  <sequence-to-s>C, PC, Outro</sequence-to-s>
  <created-at type="datetime">2008-06-19T19:58:26Z</created-at>
  <created-by-id type="integer">1</created-by-id>
  <id type="integer">709788</id>
  <length type="integer">0</length>
  <name>Default Arrangement</name>
  <song-id type="integer">1</song-id>
  <update-by-id type="integer">1</update-by-id>
  <updated-at type="datetime">2008-06-19T19:58:26Z</updated-at>
  <properties type="array">
    <property>
      <id type="integer">1012676</id>
      <field>Style</field>
      <field_allows_multiple_selections>false</field_allows_multiple_selections>
      <option>Traditional</option>
    </property>
    <property>
      <id type="integer">1012677</id>
      <field>Speed</field>
      <field_allows_multiple_selections>false</field_allows_multiple_selections>
      <option>Fast</option>
    </property>
  </properties>
</arrangement>

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

1
2
3
4
5
6
7
8
<arrangements>
  <arrangement>
    ...
  </arrangement>
  <arrangement>
    ...
  </arrangement>
</arrangements>

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<arrangement>
  <bpm type="integer" nil="true"/>
  <chord-chart></chord-chart>
  <chord-chart-columns type="integer">1</chord-chart-columns>
  <chord-chart-font>[Helvetica | Courier | Times-Roman]</chord-chart-font>
  <chord-chart-font-size type="integer">
    [10 | 11 | 12 | 13 | 14 | 16 | 18 | 20 | 24 | 28 | 32 | 36 | 42 | 48]
  </chord-chart-font-size>
  <chord-chart-key/></chord-chart-key>
  <created-at type="datetime">2008-06-19T19:58:26Z</created-at>
  <created-by-id type="integer">1</created-by-id>
  <id type="integer">709788</id>
  <length type="integer">0</length>
  <name>Default Arrangement</name>
  <song-id type="integer">1</song-id>
  <update-by-id type="integer">1</update-by-id>
  <updated-at type="datetime">2008-06-19T19:58:26Z</updated-at>
</arrangement>

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<arrangement>
  <bpm type="integer" nil="true"/>
  <chord-chart></chord-chart>
  <chord-chart-columns type="integer">1</chord-chart-columns>
  <chord-chart-font>[Helvetica | Courier | Times-Roman]</chord-chart-font>
  <chord-chart-font-size type="integer">
    [10 | 11 | 12 | 13 | 14 | 16 | 18 | 20 | 24 | 28 | 32 | 36 | 42 | 48]
  </chord-chart-font-size>
  <chord-chart-key/></chord-chart-key>
  <created-at type="datetime">2008-06-19T19:58:26Z</created-at>
  <created-by-id type="integer">1</created-by-id>
  <id type="integer">709788</id>
  <length type="integer">0</length>
  <name>Default Arrangement</name>
  <song-id type="integer">1</song-id>
  <update-by-id type="integer">1</update-by-id>
  <updated-at type="datetime">2008-06-19T19:58:26Z</updated-at>
</arrangement>