-
Notifications
You must be signed in to change notification settings - Fork 32
Server
Igor Balos edited this page Nov 9, 2017
·
2 revisions
Retrieve server:
// retrieve server
Server server = client.getServer();
String name = server.getName();Update server details:
// update server
Server serverData = new Server();
serverData.setName("new name");
Server response = client.setServer(serverData);For additional information about the capabilities of the Postmark API, see Postmark Developers Documentation.