# Redirect URL after user registration with the partner service After completing registration, the user must be redirected to this URL in the browser, along with any required data needed by the partner service. Endpoint: POST /v1/marketplace/partner/callback/redirect Version: 1.0.1 Security: bearer ## Header parameters: - `Accept` (string, required) e.g. application/vnd.api.v2+json Example: "application/vnd.api.v2+json" ## Request fields (application/json): - `salon_id` (number, required) Location ID. Example: 123 - `application_id` (number, required) Application ID. Example: 123 - `api_key` (number) API-key for messaging module. Example: "2f181e2a-5c22-4ae7-9d9b-07104f312c28" - `webhook_urls` (array) Webhooks array Example: ["https://example.com/webhook"] ## Response 200 fields (application/json): - `success` (boolean) Example: true ## Response 401 fields (application/json): - `success` (boolean) Response status. - `data` (object,null) Response data. - `meta` (object) Additional response data. - `meta.message` (string) Error message. Example: "Authentication needed." ## Response 403 fields (application/json): - `success` (boolean) Response status. - `data` (object,null) Response data. - `meta` (object) Additional response data. - `meta.message` (string) Error message. Example: "Access denied." ## Response 422 fields (application/json): - `success` (boolean) Response status. - `data` (object,null) Response data. - `meta` (object) Additional response data. - `meta.message` (string) Error message. Example: "An error has occurred." - `meta.errors` (array) Set of a validation error messages. ## Response 301 fields