Logoelepay
Locations

Update location

Updates location information.

POST
/locations/{locationId}
Location ID
Name transliteration object
Phone number
length ≤ 20
Postal code
length ≤ 8
Address transliteration object
Latitude
format: double
Longitude
format: double
Remarks
Location status - active Active - submitted Submitted

Response Body

application/json

OK

TypeScript Definitions

Use the response body type in TypeScript.

curl -X POST "https://api.elepay.io/locations/string" \  -H "Content-Type: application/json" \  -d '{}'
{
  "id": "string",
  "name": {
    "kanji": "string",
    "kana": "string",
    "romaji": "string"
  },
  "tel": "string",
  "zip": "string",
  "address": {
    "kanji": {
      "pref": "string",
      "city": "string",
      "town": "string",
      "address1": "string",
      "address2": "string"
    },
    "kana": {
      "pref": "string",
      "city": "string",
      "town": "string",
      "address1": "string",
      "address2": "string"
    },
    "romaji": {
      "pref": "string",
      "city": "string",
      "town": "string",
      "address1": "string",
      "address2": "string"
    }
  },
  "latitude": 0.1,
  "longitude": 0.1,
  "note": "string",
  "status": "active"
}