Prayer requests

get
Authorizations
Query parameters
pageintegerOptional

A page number within the paginated result set.

page_sizeintegerOptional

Number of results to return per page.

Responses
200Success
application/json
get
GET /api/prayer-requests HTTP/1.1
Host: prosper-api-test.churchpad.com
Authorization: Bearer JWT
Accept: */*
200Success
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "additional_prayer_request_fields": "text",
      "legacy_id": "text",
      "nextgen_legacy_id": "text",
      "created_at": "2025-07-23T12:29:10.019Z",
      "updated_at": "2025-07-23T12:29:10.019Z",
      "content": "text",
      "is_answered": true,
      "is_archived": true,
      "is_anonymous": true,
      "status": "pending",
      "media": null,
      "reason": "text",
      "church": "123e4567-e89b-12d3-a456-426614174000"
    }
  ]
}
post
Authorizations
Body
idstring · uuidRead-onlyRequired
additional_prayer_request_fieldsstringRead-onlyRequired
legacy_idstring | nullableOptional
nextgen_legacy_idstring | nullableOptional
created_atstring · date-time | nullableOptional
updated_atstring · date-timeRead-onlyRequired
contentstringRequired
is_answeredbooleanOptional
is_archivedbooleanOptional
is_anonymousbooleanOptional
statusstring · enumOptional
  • pending - Pending
  • archived - Archived
  • approved - Approved
  • rejected - Rejected
Possible values:
mediaanyOptional
reasonstring | nullableOptional
churchstring · uuid | nullableOptional
Responses
201Success
application/json
post
POST /api/prayer-requests HTTP/1.1
Host: prosper-api-test.churchpad.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 258

{
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:29:10.019Z",
  "content": "text",
  "is_answered": true,
  "is_archived": true,
  "is_anonymous": true,
  "status": "pending",
  "media": null,
  "reason": "text",
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
201Success
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "additional_prayer_request_fields": "text",
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:29:10.019Z",
  "updated_at": "2025-07-23T12:29:10.019Z",
  "content": "text",
  "is_answered": true,
  "is_archived": true,
  "is_anonymous": true,
  "status": "pending",
  "media": null,
  "reason": "text",
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
get
Authorizations
Path parameters
idstring · uuidRequired

A UUID string identifying this prayer request.

Responses
200Success
application/json
get
GET /api/prayer-requests/{id} HTTP/1.1
Host: prosper-api-test.churchpad.com
Authorization: Bearer JWT
Accept: */*
200Success
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "additional_prayer_request_fields": "text",
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:29:10.019Z",
  "updated_at": "2025-07-23T12:29:10.019Z",
  "content": "text",
  "is_answered": true,
  "is_archived": true,
  "is_anonymous": true,
  "status": "pending",
  "media": null,
  "reason": "text",
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
put
Authorizations
Path parameters
idstring · uuidRequired

A UUID string identifying this prayer request.

Body
idstring · uuidRead-onlyRequired
additional_prayer_request_fieldsstringRead-onlyRequired
legacy_idstring | nullableOptional
nextgen_legacy_idstring | nullableOptional
created_atstring · date-time | nullableOptional
updated_atstring · date-timeRead-onlyRequired
contentstringRequired
is_answeredbooleanOptional
is_archivedbooleanOptional
is_anonymousbooleanOptional
statusstring · enumOptional
  • pending - Pending
  • archived - Archived
  • approved - Approved
  • rejected - Rejected
Possible values:
mediaanyOptional
reasonstring | nullableOptional
churchstring · uuid | nullableOptional
Responses
200Success
application/json
put
PUT /api/prayer-requests/{id} HTTP/1.1
Host: prosper-api-test.churchpad.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 258

{
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:29:10.019Z",
  "content": "text",
  "is_answered": true,
  "is_archived": true,
  "is_anonymous": true,
  "status": "pending",
  "media": null,
  "reason": "text",
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
200Success
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "additional_prayer_request_fields": "text",
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:29:10.019Z",
  "updated_at": "2025-07-23T12:29:10.019Z",
  "content": "text",
  "is_answered": true,
  "is_archived": true,
  "is_anonymous": true,
  "status": "pending",
  "media": null,
  "reason": "text",
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
delete
Authorizations
Path parameters
idstring · uuidRequired

A UUID string identifying this prayer request.

Responses
204
No response body
delete
DELETE /api/prayer-requests/{id} HTTP/1.1
Host: prosper-api-test.churchpad.com
Authorization: Bearer JWT
Accept: */*
204

No response body

No content

patch
Authorizations
Path parameters
idstring · uuidRequired

A UUID string identifying this prayer request.

Body
idstring · uuidRead-onlyOptional
additional_prayer_request_fieldsstringRead-onlyOptional
legacy_idstring | nullableOptional
nextgen_legacy_idstring | nullableOptional
created_atstring · date-time | nullableOptional
updated_atstring · date-timeRead-onlyOptional
contentstringOptional
is_answeredbooleanOptional
is_archivedbooleanOptional
is_anonymousbooleanOptional
statusstring · enumOptional
  • pending - Pending
  • archived - Archived
  • approved - Approved
  • rejected - Rejected
Possible values:
mediaanyOptional
reasonstring | nullableOptional
churchstring · uuid | nullableOptional
Responses
200Success
application/json
patch
PATCH /api/prayer-requests/{id} HTTP/1.1
Host: prosper-api-test.churchpad.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 258

{
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:29:10.019Z",
  "content": "text",
  "is_answered": true,
  "is_archived": true,
  "is_anonymous": true,
  "status": "pending",
  "media": null,
  "reason": "text",
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
200Success
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "additional_prayer_request_fields": "text",
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:29:10.019Z",
  "updated_at": "2025-07-23T12:29:10.019Z",
  "content": "text",
  "is_answered": true,
  "is_archived": true,
  "is_anonymous": true,
  "status": "pending",
  "media": null,
  "reason": "text",
  "church": "123e4567-e89b-12d3-a456-426614174000"
}