Method: AppEnrollmentsClient#reconnect_app_enrollment

Defined in:
lib/lockstep_sdk/clients/app_enrollments_client.rb

#reconnect_app_enrollment(id:, body:) ⇒ Object

Updates the settings associated with this App Enrollment

Parameters:

  • id (uuid)

    The id for the app enrollment

  • body (AppEnrollmentReconnectInfo)

    Information to reconnect the App Enrollment



91
92
93
94
# File 'lib/lockstep_sdk/clients/app_enrollments_client.rb', line 91

def reconnect_app_enrollment(id:, body:)
    path = "/api/v1/AppEnrollments/#{id}/reconnect"
    @connection.request(:post, path, body, nil)
end