Skip to main content
GET
/
v1
/
notifications
/
{id}
Get administration notification by id
curl --request GET \
  --url https://api.paytsoftware.com/v1/notifications/{id} \
  --header 'Authorization: Bearer <token>'
{
  "notification_type": "<string>",
  "resource_type": "<string>",
  "acknowledged_by_user": {
    "id": "<string>",
    "name": "<string>",
    "email_address": "<string>"
  },
  "details": {
    "bounce_reason": "<string>"
  },
  "credit_case_id": "<string>",
  "debtor_id": "<string>",
  "administration_id": "<string>",
  "id": "<string>",
  "invoice_id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "acknowledged_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

OAuth2 access token or static API token. See Authorization for how to obtain one.

Path Parameters

id
string
required

Notification identifier

Query Parameters

administration_id
string
required

Administration identifier

fields
object

JSON object defining fields to receive (e.g {"only": ["field1", {"field2": ["field3"]}]})

Response

Notification

CustomerApi_V1_NotificationEntity model

notification_type
string
required

Notification type (see /models/notification)

resource_type
string
required

Resource type the notification is about (administration|credit_case|debtor|invoice)

acknowledged_by_user
object
required

User who acknowledged the notification

details
object
required

Notification details

credit_case_id
string
required

Associated credit_case identifier

debtor_id
string
required

Associated debtor identifier

administration_id
string
required

Owning administration identifier

id
string
required

Unique identifier

invoice_id
string
required

Associated invoice identifier

created_at
string<date-time>
required

Timestamp at which the notification was created

acknowledged_at
string<date-time>
required

Timestamp at which the notification was acknowledged

updated_at
string<date-time>
required

Timestamp at which the notification was last updated

Last modified on June 12, 2026