Update profile
Update first name and last name in your profile.
Request
Request header:
PUT https://api.ipaymy.com/v2/my_profile
Host: api.ipaymy.com
Accept: application/json
Request body:
{
"first_name": "Alice",
"last_name": "Bob"
}
first_name:
- Type: string
- Validate: required
last_name:
- Type: string
- Validate: required
Response codes:
- 200: Good stuff, and the response body should be easy to parse.
- 422: Typically malformed JSON, such as an integer in place of the required alphanumeric string, or a missing key. Check the response body for further details.