Skip to content

Commit

Permalink
👽️ Upgrade salesforce async job endpoint to 54.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarlett committed Dec 6, 2022
1 parent ac087a8 commit 726f60b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public ResourceRepresentation getBulkJob(String id, Boolean isBulkV2) throws Api
ObjectMapper jsonMapper = new ObjectMapper();
jsonMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
HttpResponse res = Http.send(new HttpRequest()
.url(client.getSession().getApiEndpoint() + "/services/async/53.0/job/" + id)
.url(client.getSession().getApiEndpoint() + "/services/async/54.0/job/" + id)
.method("GET")
.header("X-SFDC-Session", client.getSession().getAccessToken())
.header("Accept", "application/json")
Expand Down

0 comments on commit 726f60b

Please sign in to comment.