ParametersName | Located in | Description | Required | Example |
---|
Authorization | header | Autoryzacja Basic. Wymagany. Please use your SIP account login and password. | yes | Basic aHR0cHdhdGNoOmY= | User-Agent | header | Dialer identifier in the form custom-name,operating-system,application-version | yes | vippie;ios;2.1.9 | Content-Type | header | multipart/form-data | yes | multipart/form-data | Content-Disposition | body | Avatar and/or thumbnail file designation. For avatar form-data; name = "datafile", while for the thumbnail form-data; name = "thumbnail" | yes | form-data; name="datafile"; filename="file-name.jpg" | Content-Type | body | file type | yes | image/jpeg | Content-Transfer-Encoding | body | A method of representing binary data | yes | binary |
curl -v -F "filename=man.png" -F "datafile=@man.png" 'https://xxxxxxxxxxx/emcd/v2/avatar/image' \ --header 'User-Agent: vippie;ios;1.2.3' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry'
Curl avatar + thumbnail:
curl -v -F "datafile=@man.png" -F "thumbnail=@man_thumbnail.png" 'https://xxxxxxxxxx/emcd/v2/avatar/image' \ --header 'User-Agent: vippie;ios;1.2.3' \ --header 'Authorization: Basic cGlvdHIyOndpZWxraXBpb3Ry'
|