sayren Docs
Me

Create address

POST
/storefront/v1/me/addresses
AuthorizationBearer <token>

회원 accessToken

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

alias*string
Length1 <= length <= 20
receiverName*string
Length1 <= length <= 50
phone*string
Match^01[0-9]{8,9}$
zipCode*string
Match^[0-9]{5}$
address1*string
Length1 <= length
address2?string
isDefault?boolean
Defaultfalse

Response Body

curl -X POST "https://example.com/storefront/v1/me/addresses" \  -H "Content-Type: application/json" \  -d '{    "alias": "string",    "receiverName": "string",    "phone": "string",    "zipCode": "string",    "address1": "string"  }'
Empty