profile 이미지 URL 업데이트

PUT https://{market-domain}/v1.0/pick/lobby/me/profile

Headers

Name
Type
Description

Authorization*

String

Bearer eyJhbGciOiJ...

Request Body

Name
Type
Description

profile_path*

String

이미지 URL

{
    "return": 0,
    "message": "success"
}

curl --location --request PUT 'https://localhost:51101/v1.0/pick/lobby/me/profile' \

--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiI…..’ \

--header 'Content-Type: application/json' \

--data-raw '{

"profile_path" : "https://onbufffile.blob.core.windows.net/inno/live/nft/pack/56/thumb.png"

}'

Last updated