Update

Update an existing donation keyword object.

https://app.mojotxt.com/api/v1/{phone_number}/donations/update/{ListID or Keyword}

Any Donation Object field can be included as a parameter. You can send parameters as part of the GET querystring, or as POST data. Multiple fields can be updated at one time. Fields not included with your request will be ignored. To set a field to NULL, send an empty value.

Example Request:

GET https://app.mojotxt.com/api/v1/+16146827117/donations/update/124?FundName=New+Fund+Name

-or-

POST https://app.mojotxt.com/api/v1/+16146827117/donations/update/124
DATA FundName=New Fund Name

Example Result:

{
"result": "success",
"timestamp": 1445941881,
"request": {
"phone": "+16146827117",
"object": "donations",
"verb": "update",
"id": "124",
"FundName": "New Fund Name"
},
"message": "The donation object was updated successfully."
}