Fellowship One REST API

Denominations

A denomination or collection of denominations are used for people.

Authentication

This method requires Authentication

Resource Structure

This resource conforms to the following XSD

Methods

Denominations ::

Method: list [GET]

The list method will return a list of denominations.

Notes ::

Content-types ::

Format ::

Parameters ::

Sample Response ::

Given: [GET] https://demo.staging.fellowshiponeapi.com/v1/People/Denominations

Response:

HTTP/1.1 200 OK
Cache-Control: private
Content-Type: application/xml; charset=utf-8
Content-Location: https://demo.staging.fellowshiponeapi.com/v1/People/Denominations
Server: Microsoft-IIS/7.0
X-AspNetMvc-Version: 1.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Tue, 28 Apr 2009 06:53:32 GMT
Content-Length: 5411

<?xml version="1.0" encoding="utf-8"?>
<denominations>
  <denomination json:Array="true" id="1" uri="https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/1">
	<name>Assembly of God</name>
  </denomination>
  <denomination json:Array="true" id="2" uri="https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/2">
	<name>Baptist</name>
  </denomination>
  <denomination json:Array="true" id="3" uri="https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/3">
	<name>Bible</name>
  </denomination>
  <denomination json:Array="true" id="4" uri="https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/4">
	<name>Buddhist</name>
  </denomination>
  ...
<denominations>

Given: [GET] https://demo.staging.fellowshiponeapi.com/v1/People/Denominations.json

Response:

	HTTP/1.1 200 OK
	Cache-Control: private
	Content-Type: application/json; charset=utf-8
	Content-Location: https://demo.staging.fellowshiponeapi.com/v1/People/Denominations.json
	Server: Microsoft-IIS/7.0
	X-AspNetMvc-Version: 1.0
	X-AspNet-Version: 2.0.50727
	X-Powered-By: ASP.NET
	Date: Fri, 01 May 2009 18:10:53 GMT
	Content-Length: 4149

	{
		"denominations": {
			"denomination": [
				{
					"@array": "true",
					"@id": "1",
					"@uri": "https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/1",
					"name": "Assembly of God"
				},
				{
					"@array": "true",
					"@id": "2",
					"@uri": "https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/2",
					"name": "Baptist"
				},
				{
					"@array": "true",
					"@id": "3",
					"@uri": "https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/3",
					"name": "Bible"
				},
				{
					"@array": "true",
					"@id": "4",
					"@uri": "https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/4",
					"name": "Buddhist"
				},
				{
					"@array": "true",
					"@id": "5",
					"@uri": "https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/5",
					"name": "Catholic"
				},
				...
			]
		}
	}

Method: show [GET]

The show method will return a single denomination for a given id.

Notes ::

Content-types ::

Format ::

Parameters ::

Sample Response ::

Given: [GET] https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/117

Response:

HTTP/1.1 200 OK
Cache-Control: private
Content-Type: application/xml; charset=utf-8
Content-Location: https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/7
Server: Microsoft-IIS/7.0
X-AspNetMvc-Version: 1.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Sun, 12 Apr 2009 06:05:59 GMT
Content-Length: 148

<?xml version="1.0" encoding="utf-8"?>
<denomination id="7" uri="https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/7">
	<name>Christian</name>
</denomination>

Given: [GET] https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/2.json

Response:

HTTP/1.1 200 OK
Cache-Control: private
Content-Type: application/json; charset=utf-8
Content-Location: https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/2.json
Server: Microsoft-IIS/7.0
X-AspNetMvc-Version: 1.0
X-AspNet-Version: 2.0.50727
X-Powered-By: ASP.NET
Date: Fri, 01 May 2009 18:13:19 GMT
Content-Length: 111

{
	"denomination": {
		"@id": "2",
		"@uri": "https://demo.staging.fellowshiponeapi.com/v1/People/Denominations/2",
		"name": "Baptist"
	}
}