sayren Docs
출고지·반품지

출고지·반품지 목록 조회

GET
/v1/seller-addresses
AuthorizationBearer <token>

userToken(계정 스코프) 또는 storeToken(스토어 스코프)

In: header

Query Parameters

type?string

주소 유형 필터

Value in

  • "SHIPPING"
  • "RETURN"

Response Body

application/json

curl -X GET "https://example.com/v1/seller-addresses"
{  "meta": {    "status": 200,    "code": "OK",    "message": "OK",    "isSuccess": true  },  "data": [    {      "addressId": "string",      "type": "SHIPPING",      "name": "string",      "isDefault": true,      "contactName": "string",      "phone": "string",      "zipCode": "string",      "address1": "string",      "address2": "string",      "createdAt": "string"    }  ],  "error": null}