Apollo API Documentation

Writeboards API calls


Get writeboards

GET /projects/#{project_id}/writeboards/#{page}

Returns the 25 most recent writeboards in the given project. The {page} parameter is optional. If there are older writeboards not included in the response, the root response element will also have a “continued-at” attribute specifying the path where the next oldest 25 writeboards can be retrieved.

Response

{
	"continued-at":"/projects/1/writeboards/2",
	"writeboards":[
		{
			"id":"61755784",
			"title":"Writeboard 1",
			...
			"revisions":[
				{
					"id":"9393",
					"revision-number":"8",
					...
				},
				{
					"id":"34456",
					"revision-number":"7",
					...
				},
				...
			]
		},
		{
			"id":"35371388",
			"title":"Writeboard 2",
			...
			"revisions":[
				{
					"id":"9393",
					"revision-number":"8",
					...
				},
				{
					"id":"34456",
					"revision-number":"7",
					...
				},
				...
			]
		},
		...
	]
}

Get writeboard

GET /writeboards/#{id}

Returns a single writeboard record identified by its integer ID.

Response

{
	"writeboard":{
		"id":"61755784",
		"title":"Writeboard 1",
		...
		"revisions":[
			{
				"id":"9393",
				"revision-number":"8",
				...
			},
			{
				"id":"34456",
				"revision-number":"7",
				...
			},
			...
		]
	}
}