Returns the results from a teamraiser create or update API call.
| Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
|---|---|---|---|
| CRTeamraiserAPI | SRTeamraiserAPI | GET, POST | Server. |
Given the Job ID returned by either of the TeamRaiser Data methods: addTeamraiserData or updateTeamraiserData , this method returns the status of the batch operation if it is still processing, or the results if it is complete.
See topic Common Parameters.
Required. A job ID returned by the addTeamraiserData or updateTeamraiserData method
Type xsd:integer.
See topic Common Parameters.
Required. A job ID returned by the addTeamraiserData or updateTeamraiserData method
Type xsd:integer.
See topic HTTP Status Codes.
XML response
<?xml version="1.0" encoding="UTF-8"?>
<getTeamraiserCreateUpdateResponse jobId="123245456" xsi:schemaLocation="http://convio.com/crm/v1.0 http://service.convio.net/xmlschema/crm.public.v1.xsd" xmlns="http://convio.com/crm/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<jobResult Id="0">
<success>false</success>
<eventTitle>Test Event</eventTitle>
<errors>
<createUpdateError>
<error>Warning: tried to update locked field (LocalOfficeAttn)</error>
<errorLevel>Warning</errorLevel>
</createUpdateError>
<createUpdateError>
<error>Interest Category not found</error>
<errorLevel>Error</errorLevel>
</createUpdateError>
</errors>
</jobResult>
<jobResult Id="1">
<success>true</success>
<eventTitle>Test Event 2</eventTitle>
<frId>1000</frId>
</jobResult>
</getTeamraiserCreateUpdateResponse>
JSON response
{"getTeamraiserCreateUpdateResponse":{"jobId":"123245456","jobResult":[{"errors":{"createUpdateError":[{"error":"Warning: tried to update locked field (LocalOfficeAttn)","errorLevel":"Warning"},{"error":"Interest Category not found","errorLevel":"Error"}]},"eventTitle":"Test Event","Id":"0","success":"false"},{"frId":"1000","eventTitle":"Test Event 2","Id":"1","success":"true"}]}}