37 lines
549 B
Plaintext
Executable File
37 lines
549 B
Plaintext
Executable File
meta {
|
|
name: Update profile photo
|
|
type: http
|
|
seq: 2
|
|
}
|
|
|
|
post {
|
|
url: {{url}}/api/profile-photo
|
|
body: multipartForm
|
|
auth: inherit
|
|
}
|
|
|
|
body:multipart-form {
|
|
photo: @file(photo.jpg)
|
|
}
|
|
|
|
assert {
|
|
res.status: eq 200
|
|
res.body.profile_photo_path: isDefined
|
|
}
|
|
|
|
settings {
|
|
encodeUrl: true
|
|
timeout: 0
|
|
}
|
|
|
|
docs {
|
|
# /profile-photo -- POST
|
|
|
|
Met à jour la photo de profil de l'utilisateur connecté.
|
|
L'ancienne photo est supprimée si elle existe.
|
|
|
|
Authentification requise.
|
|
|
|
Entrée: photo (fichier image jpeg/png/jpg/gif, max 2MB)
|
|
}
|