class Multiwoven::Integrations::Destination::MicrosoftExcel::Client

def create_connection(connection_config)

def create_connection(connection_config)
  token = connection_config[:token]
  response = Multiwoven::Integrations::Core::HttpClient.request(
    MS_EXCEL_AUTH_ENDPOINT,
    HTTP_GET,
    headers: auth_headers(token)
  )
  JSON.parse(response.body)["id"]
end