Hi,
I'm trying to migrare my users to the new oauth 2 tokens, but when I send the post request to /oauth/token/migrate_v2 with the payload I only get a 204 response with no data.
Request code (Ruby on Rails):
client_id = ENV['CLOVER_APP_ID'] client_secret = ENV['CLOVER_APP_SECRET'] migrate_url = "#{ENV['CLOVER_URL']}/oauth/token/migrate_v2" response = RestClient.post( migrate_url, { "merchant_uuid": clover_sync.merchant_id, "app_uuid": client_id, "auth_token": clover_sync.access_token }.to_json, { "Content-Type": "application/json", "Accept": "application/json" } )