Get schedule info

A query that returns information about the current state of a schedule transaction on a Hedera network.

Schedule Info Response

Query Signing Requirements

  • The client operator key is required to sign the query request

Methods

//Create the query
ScheduleInfoQuery query = new ScheduleInfoQuery()
     .setScheduleId(scheduleId);

//Sign with the client operator private key and submit the query request to a node in a Hedera network
ScheduleInfo info = query.execute(client);

Last updated