Marketo API

Getting access, Developing, Testing

Back to Marketo

Get Import Program Member Status

Returns the status of an import batch job. Required Permissions: Read-Write Lead

Input

type: object properties: parameters: type: object properties: batchId: type: integer format: int32 description: Id of the import batch job. required: - batchId title: Parameters

Output

required: - errors - requestId - result - success - warnings type: object properties: errors: type: array description: Array of errors that occurred if the request was unsuccessful items: required: - code - message type: object properties: code: type: string description: >- Error code of the error. See full list of error codes <a href="https://developers.marketo.com/rest-api/error-codes/">here</a> message: type: string description: Message describing the cause of the error requestId: type: string description: Id of the request made result: type: array description: Array of results for individual records in the operation, may be empty items: required: - batchId - importId - status type: object description: Response containing import status information properties: batchId: type: integer description: Unique integer id of the import job format: int32 importId: type: string description: Unique integer id of the import job status: type: string description: Status of the import job success: type: boolean description: Whether the request succeeded example: false warnings: type: array description: Array of warnings given for the operation items: required: - code - message type: object properties: code: type: integer description: Integer code of the warning format: int32 message: type: string description: Message describing the warning