put https://sandbox-api.readyremit.com/v1/senders/
The PUT /senders/{senderId}
endpoint updates the details of an existing sender record.
Implementation Guide:
- Prerequisite: Ensure that the
GET /sender-fields
endpoint is called first to retrieve the necessary fields for updating a sender record. - Dynamic Fields: The fields required for updating a sender record are dynamic and may change based on the sender type and other factors. Always use the latest field requirements from the
GET /sender-fields
endpoint. - Validation: Validate the request body against the field requirements obtained from the
GET /sender-fields
endpoint to ensure all required fields are included and correctly formatted.
Note : The PUT /senders endpoint replaces the sender's information entirely, rather than adding to it incrementally. Therefore, all necessary fields must be included in the request. To ensure the most current information is included, it is recommended to perform a GET request before making the PUT request.