propertymappings_notification_retrieve
GET/api/v3//propertymappings/notification/:pm_uuid/
NotificationWebhookMapping Viewset
Request
Path Parameters
pm_uuid uuidrequired
A UUID string identifying this Webhook Mapping.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
pk uuidrequired
name stringrequired
expression stringrequired
{
"pk": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"expression": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
property name* any
Validation Error
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '/api/v3/propertymappings/notification/:pm_uuid/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'