senders_update
Update a sender's name or VAPID keys by providing the sender ID and the new values. Sends a PATCH request to modify an existing Pushpad sender.
Instructions
To update a sender, send a PATCH request to /senders/SENDER_ID.
The sender will be updated using the provided information.
The response body will contain a JSON object with the attributes of your sender.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | The human-readable name set for the sender. | |
| sender_id | Yes | The ID of a sender. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | A unique identifier for each sender. This is automatically generated upon sender creation. | |
| name | No | The human-readable name set for the sender. | |
| created_at | No | A time value given in ISO 8601 format. It represents when the sender was created. | |
| vapid_public_key | No | The VAPID public key associated to the subscriptions. This is automatically generated upon sender creation. You can optionally provide it if you want to import your existing key. | |
| vapid_private_key | No | The VAPID private key used to sign notifications. This is automatically generated upon sender creation. You can optionally provide it if you want to import your existing key. |