Tickets

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/tickets 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",
      "user": {
        "id": "text",
        "email": "text",
        "phone": "text",
        "profile": "text",
        "additional_user_fields": "text"
      },
      "legacy_id": "text",
      "nextgen_legacy_id": "text",
      "created_at": "2025-07-23T12:09:08.636Z",
      "updated_at": "2025-07-23T12:09:08.636Z",
      "ticket_id": 1,
      "type": "text",
      "priority": "text",
      "description": "text",
      "status": "pending",
      "change_log": null,
      "closed_at": "2025-07-23T12:09:08.636Z",
      "deleted_at": "2025-07-23T12:09:08.636Z",
      "media": null,
      "church": "123e4567-e89b-12d3-a456-426614174000"
    }
  ]
}
post
Authorizations
Body
idstring · uuidRead-onlyRequired
userall ofRead-onlyRequired
legacy_idstring | nullableOptional
nextgen_legacy_idstring | nullableOptional
created_atstring · date-time | nullableOptional
updated_atstring · date-timeRead-onlyRequired
ticket_idinteger | nullableOptional
typestring · max: 100Required
prioritystring · max: 100Required
descriptionstringRequired
statusstring · enumOptional
  • pending - Pending
  • active - Active
  • closed - Closed
Possible values:
change_loganyOptional
closed_atstring · date-time | nullableOptional
deleted_atstring · date-time | nullableOptional
mediaanyOptional
churchstring · uuidRequired
Responses
201Success
application/json
post
POST /api/tickets HTTP/1.1
Host: prosper-api-test.churchpad.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 331

{
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:09:08.636Z",
  "ticket_id": 1,
  "type": "text",
  "priority": "text",
  "description": "text",
  "status": "pending",
  "change_log": null,
  "closed_at": "2025-07-23T12:09:08.636Z",
  "deleted_at": "2025-07-23T12:09:08.636Z",
  "media": null,
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
201Success
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "user": {
    "id": "text",
    "email": "text",
    "phone": "text",
    "profile": "text",
    "additional_user_fields": "text"
  },
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:09:08.636Z",
  "updated_at": "2025-07-23T12:09:08.636Z",
  "ticket_id": 1,
  "type": "text",
  "priority": "text",
  "description": "text",
  "status": "pending",
  "change_log": null,
  "closed_at": "2025-07-23T12:09:08.636Z",
  "deleted_at": "2025-07-23T12:09:08.636Z",
  "media": null,
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
get
Authorizations
Path parameters
idstring · uuidRequired

A UUID string identifying this ticket.

Responses
200Success
application/json
get
GET /api/tickets/{id} HTTP/1.1
Host: prosper-api-test.churchpad.com
Authorization: Bearer JWT
Accept: */*
200Success
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "user": {
    "id": "text",
    "email": "text",
    "phone": "text",
    "profile": "text",
    "additional_user_fields": "text"
  },
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:09:08.636Z",
  "updated_at": "2025-07-23T12:09:08.636Z",
  "ticket_id": 1,
  "type": "text",
  "priority": "text",
  "description": "text",
  "status": "pending",
  "change_log": null,
  "closed_at": "2025-07-23T12:09:08.636Z",
  "deleted_at": "2025-07-23T12:09:08.636Z",
  "media": null,
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
put
Authorizations
Path parameters
idstring · uuidRequired

A UUID string identifying this ticket.

Body
idstring · uuidRead-onlyRequired
userall ofRead-onlyRequired
legacy_idstring | nullableOptional
nextgen_legacy_idstring | nullableOptional
created_atstring · date-time | nullableOptional
updated_atstring · date-timeRead-onlyRequired
ticket_idinteger | nullableOptional
typestring · max: 100Required
prioritystring · max: 100Required
descriptionstringRequired
statusstring · enumOptional
  • pending - Pending
  • active - Active
  • closed - Closed
Possible values:
change_loganyOptional
closed_atstring · date-time | nullableOptional
deleted_atstring · date-time | nullableOptional
mediaanyOptional
churchstring · uuidRequired
Responses
200Success
application/json
put
PUT /api/tickets/{id} HTTP/1.1
Host: prosper-api-test.churchpad.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 331

{
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:09:08.636Z",
  "ticket_id": 1,
  "type": "text",
  "priority": "text",
  "description": "text",
  "status": "pending",
  "change_log": null,
  "closed_at": "2025-07-23T12:09:08.636Z",
  "deleted_at": "2025-07-23T12:09:08.636Z",
  "media": null,
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
200Success
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "user": {
    "id": "text",
    "email": "text",
    "phone": "text",
    "profile": "text",
    "additional_user_fields": "text"
  },
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:09:08.636Z",
  "updated_at": "2025-07-23T12:09:08.636Z",
  "ticket_id": 1,
  "type": "text",
  "priority": "text",
  "description": "text",
  "status": "pending",
  "change_log": null,
  "closed_at": "2025-07-23T12:09:08.636Z",
  "deleted_at": "2025-07-23T12:09:08.636Z",
  "media": null,
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
delete
Authorizations
Path parameters
idstring · uuidRequired

A UUID string identifying this ticket.

Responses
204
No response body
delete
DELETE /api/tickets/{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 ticket.

Body
idstring · uuidRead-onlyOptional
userall ofRead-onlyOptional
legacy_idstring | nullableOptional
nextgen_legacy_idstring | nullableOptional
created_atstring · date-time | nullableOptional
updated_atstring · date-timeRead-onlyOptional
ticket_idinteger | nullableOptional
typestring · max: 100Optional
prioritystring · max: 100Optional
descriptionstringOptional
statusstring · enumOptional
  • pending - Pending
  • active - Active
  • closed - Closed
Possible values:
change_loganyOptional
closed_atstring · date-time | nullableOptional
deleted_atstring · date-time | nullableOptional
mediaanyOptional
churchstring · uuidOptional
Responses
200Success
application/json
patch
PATCH /api/tickets/{id} HTTP/1.1
Host: prosper-api-test.churchpad.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 331

{
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:09:08.636Z",
  "ticket_id": 1,
  "type": "text",
  "priority": "text",
  "description": "text",
  "status": "pending",
  "change_log": null,
  "closed_at": "2025-07-23T12:09:08.636Z",
  "deleted_at": "2025-07-23T12:09:08.636Z",
  "media": null,
  "church": "123e4567-e89b-12d3-a456-426614174000"
}
200Success
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "user": {
    "id": "text",
    "email": "text",
    "phone": "text",
    "profile": "text",
    "additional_user_fields": "text"
  },
  "legacy_id": "text",
  "nextgen_legacy_id": "text",
  "created_at": "2025-07-23T12:09:08.636Z",
  "updated_at": "2025-07-23T12:09:08.636Z",
  "ticket_id": 1,
  "type": "text",
  "priority": "text",
  "description": "text",
  "status": "pending",
  "change_log": null,
  "closed_at": "2025-07-23T12:09:08.636Z",
  "deleted_at": "2025-07-23T12:09:08.636Z",
  "media": null,
  "church": "123e4567-e89b-12d3-a456-426614174000"
}