Attach an ambassador address geocode (manager)

PATCH /manager/ambassadors/{id}/address-geocode

Path parameters

  • id integer Required

    The ambassador id

application/json

Responses

  • 200 application/json

    success

    Hide response attribute Show response attribute object
  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
  • Forbidden - You don't have permission to access this route

  • Not found - The ambassador does not exist

  • 422 application/json

    Unprocessable Content

    Hide response attributes Show response attributes object
    • message string

      Error message.

    • errors object
      Hide errors attributes Show errors attributes object
      • field array[string]

        Error message details.

      • * array[string] Additional properties

        Error message details.

PATCH /manager/ambassadors/{id}/address-geocode
curl \
 -X PATCH https://domain.tld/api/v2/manager/ambassadors/{id}/address-geocode \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"latitude":"48.856614","longitude":"2.3522219","city":"Paris","country":"France","postcode":"75001","street":"Rue de Rivoli","street2":"Place de la Concorde"}'
Request examples
{
  "latitude": "48.856614",
  "longitude": "2.3522219",
  "city": "Paris",
  "country": "France",
  "postcode": "75001",
  "street": "Rue de Rivoli",
  "street2": "Place de la Concorde"
}
Response examples (200)
{
  "message": "Address geocode attached successfully"
}
Response examples (401)
{
  "message": "Unauthorized."
}
Response examples (422)
{
  "message": "field is required! (and 3 more error)",
  "errors": {
    "field": [
      "Error message details here"
    ],
    "additionalProperty1": [
      "Error message details here"
    ],
    "additionalProperty2": [
      "Error message details here"
    ]
  }
}