Retrieve Message Signature Configuration Status
GET/targets/:id/signature/
Get the current message signature configuration status for the target.
Request
Path Parameters
id stringrequired
Responses
- 200
- 400
- 401
- 403
- 404
- 500
- application/json
- Schema
- Example (from schema)
Schema
configured booleanrequired
Indicates if message signature is configured for the target.
enabled booleanrequired
Indicates if message signature is currently enabled for the target.
signature_method stringnullablerequired
The signature method configured for the target.
Returns null if signature is not configured.
{
"configured": true,
"enabled": true,
"signature_method": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
<field name> string[]
non_field_errors string[]
{
"<field name>": [
"Errors related to field <field name>."
],
"non_field_errors": [
"Errors not related to any field specific field."
]
}
- application/json
- Schema
- Example (from schema)
Schema
detail string
{
"detail": "Incorrect authentication credentials."
}
- application/json
- Schema
- Example (from schema)
Schema
detail string
{
"detail": "You do not have permission to perform this action."
}
- application/json
- Schema
- Example (from schema)
Schema
detail string
{
"detail": "Not found."
}
- application/json
- Schema
- Example (from schema)
Schema
detail string
{
"detail": "Unexpected error while handling your request."
}
Loading...