Fill in the name of the API call in the code shown below. <soap:Body> <________________________ xmlns="ConceptShare.API"> <ownerEmail>string</ownerEmail> <password>string</pas...
CanCreateTrialAccount 0%
AddUsersToConceptApproval 0%
CreateTrialAccount 0%
LockConcept 0%
If you call the IsConceptShareUser API, which of the following elements must you include in the body of your SOAP?
workspaceId 0%
conceptId 0%
emailAddress 0%
workspaceId, conceptId 0%
If you call the UpdateContactEmail API, which of the following is NOT a valid child element of the SOAP body?
userId 0%
newEmailAddress 0%
prevEmailAddress 0%
If you want to call the AddUsersToConceptApproval API, which of the following must you use as the body of your SOAP request?
<soap:Body> <AddUserToConceptApproval xmlns="ConceptShare.API"> <workspaceId>int</workspaceId> <conceptId>int</conceptId> <userId>int</userId> </Add 0%
<soap:Body> <AddUsersToConceptApproval xmlns="ConceptShare.API"> <workspaceId>int</workspaceId> <conceptId>int</conceptId> <userIds> <int>int</int> <int>int</int> </userIds> </AddUsersToConceptApproval> </soap:Body> 0%
<soap12:Body> <AddUserToConceptApproval xmlns="ConceptShare.API"> <workspaceId>int</workspaceId> <conceptId>int</conceptId> <userId>int</userId> </AddUserToConceptApproval> </soap12:Body> 0%
If you want to upload a file to your Workspace, you must send a SOAP request to the UploadWorkspaceFile API. Which child elements will you need to send in the SOAP body?
workspaceId, fileName, fileData 0%
fileId, FileSize, DateCreated 0%
workspaceId, fileId, FileSize, DateCreated 0%
workspaceId, fileId 0%
In the SOAP response below, what will the data type be for the AddFolderResult element (indicated by a blank line in the example)? <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="h...
string 0%
boolean 0%
int 0%
None of above 0%
Is there any API function available in ConceptShare that lets users download files from their Workspace?
Shown below is the SOAP body element used to send a request to the AddConcept API. Which element is missing? <soap:Body> <AddConcept xmlns="ConceptShare.API"> <workspaceId>int</workspac...
The extraParameters element is missing. 0%
The uploadParameters element is missing. 0%
The conceptId element is missing. 0%
Study the SOAP response below. From the options given, choose the value that is NOT acceptable for the EventType element (indicated by blank lines in the example)? <?xml version="1.0" encoding="ut...
NewConcept 0%
ConceptUpdated 0%
ConceptRemoved 0%
NewTask 0%
The CreateTaskFromCommentResult, which is the child element of CreateTaskFromCommentResponse that is returned when you call the CreateTaskFromComment API, will be in which of the following data types?
int 0%
string 0%
boolean 0%
double 0%
The includeTasksAssignedByMe child element shown in the given figure would be in which of the following data types?
boolean 0%
int 0%
dateTime 0%
string 0%
What is the response of the SelectConceptsInFolder API?
It returns the SelectConceptsInFolderResult element as a Boolean 0%
It returns a SelectConceptsInFolderResult with a single Concept as its child element as a string. 0%
It returns a SelectConceptsInFolderResult with multiple Concept elements along with other details such as WorkspaceId and Name, which are the child elements of the Concept element. 0%
None of the above 0%
What is the response of the SelectWorkspaceMemberListAPI?
It returns the WorkspaceMember child elements EmailAddress and Name only. 0%
It returns the WorkspaceMember child elements Name, EmailAddress, and LastVisitedHasValue only. 0%
It returns the WorkspaceMember child elements Name, EmailAddress, AccessLevel, and LastVisitedHasValue only. 0%
It returns the WorkspaceMember child elements UserId, Name, EmailAddress, AccessLevel, LastVisitedHasValue, and LastVisited only. 0%
When you call the GetWorkspaceImage API the imageFormat element will be in which of the following data types?
int 0%
string 0%
image 0%
When you call the SelectWorkspace API, the AllowUsersToDownloadConcepts element (marked as A in the given image) will be in which of the following data types?
string 0%
boolean 0%
int 0%
None 0%
When you call the SelectWorkspaceFolderList API, which of the following elements is not included in the SOAP response?
Id 0%
WorkspaceId 0%
Name 0%
FolderId 0%
When you call the VoteOnConcept ConceptShare API, you have to pass values for the vote element. Which of the following is not an acceptable value for the vote element?
Rejected 0%
ChangeRequested 0%
NoVote 0%
Any integer value from 1 to 5 0%
When you send a SOAP 1.1 request using the ArchiveWorkspace API as shown below, what will the SOAP 1.1 response be? <soap:Body> <ArchiveWorkspace xmlns="ConceptShare.API"> <workspaceId>i...
<soap:Body> <ArchiveWorkspaceResponse xmlns="ConceptShare.API"> <ArchiveWorkspaceResult>base64Binary</ArchiveWorkspaceResult> <errorMessage>string</errorMessage> </ArchiveWorkspaceResponse> </soap:Body> 0%
<soap:Body> <ArchiveWorkspaceResponse xmlns="ConceptShare.API"> <ArchiveWorkspaceResult>string</ArchiveWorkspaceResult> <errorMessage>string</errorMessage> </ArchiveWorkspaceResponse> </soap:Body> 0%
<soap12:Body> <ArchiveWorkspaceResponse xmlns="ConceptShare.API"> <ArchiveWorkspaceResult>Array</ArchiveWorkspaceResult> <errorMessage>string</errorMessage> </ArchiveWorkspaceResponse> </soap12:Body> 0%
<soap12:Body> <ArchiveWorkspaceResponse xmlns="ConceptShare.API"> <ArchiveWorkspaceResult>string</ArchiveWorkspaceResult> <errorMessage>string</errorMessage> </ArchiveWorkspaceResponse> </soap12:Body> 0%
When you send a SOAP request using the AddWorkspaceMember API, which of the following are acceptable values for the accessLevel element of the SOAP body?
Commentor 0%
Guest 0%
Administrator 0%
All of the above 0%
Which element(s) of the SOAP body is/are missing in the request below? <soap:Body> <AddConceptWithParameters xmlns="ConceptShare.API"> <workspaceId>int</workspaceId> <conceptName>s...
uploadParameters 0%
conceptId 0%
workspaceName 0%
Both b and c 0%
Which error is present in the SOAP request body shown below? <soap:Body> <SelectSupportedExtensions xmlns="ConceptShare.API" /> </soap:Body>
No child element is supplied for the SelectSupportedExtensions element. 0%
The FileName child element of the SOAP body is missing. 0%
There are no errors in the SOAP request body. 0%
The SelectSupportedExtensions is not a ConceptShare API. 0%
Which of the following APIs passes the username and password elements in the SOAP body?
GetAuthenticatedURL 0%
CreateUser 0%
Authorize 0%
None of the above 0%
Which of the following are valid child elements that are returned in the SOAP response when you call the SelectWorkspaceTaskList API?
TaskId 0%
AssignedTo 0%
ConceptId 0%
Title 0%
All of the above 0%
Which of the following child elements MUST be included in the SOAP body when you call the Authorize API?
username and password 0%
emailAddress and password 0%
AuthorizeID and PartnerPassword 0%
None of the above 0%
Which of the following child elements of the SOAP body is supplied in the AddWorkspaceMember2 API but not in the AddWorkspaceMember API?
workspaceId 0%
accessLevel 0%
username 0%
suppressEmail 0%
Which of the following elements do you have to send when calling the MoveConceptToFolder API?
workspaceId, conceptId, folderId 0%
workspaceId, conceptId, folderId, folderName 0%
workspaceId, folderId 0%
None of the above 0%
Which of the following elements is not returned in the SOAP response when the UpdateConceptWithParameters API is called?
Id 0%
WorkspaceId 0%
conceptId 0%
FileSize 0%
Which of the following elements is supplied when you call the SelectWorkspaceList API?
workspaceId 0%
includeDisabled 0%
FileId 0%
None of the above 0%
Which of the following elements of the SOAP body are always required when sending a CompleteWorkspaceTask API request?
workspaceId 0%
commentId 0%
taskId 0%
conceptId 0%
All of the above 0%
Which of the following elements should be included in the SOAP body element when you call CanCreateTrialAccount API?
username 0%
password 0%
emailAddress 0%
All of the above 0%
Which of the following is always included in the SOAP header while calling any ConceptShare API?
AuthorizeID 0%
PartnerPassword 0%
workspaceId 0%
username 0%
Which of the following is an incorrect SOAP body response when you send a SOAP request to the UpdateWorkspace API?
<soap:Body> <UpdateWorkspaceResponse xmlns="ConceptShare.API"> <UpdateWorkspaceResult>boolean</UpdateWorkspaceResult> <errorMessage>string</errorMessage> </UpdateWorkspaceResponse> </soap:Body> 0%
<soap12:Body> <UpdateWorkspaceResponse xmlns="ConceptShare.API"> <UpdateWorkspaceResult>boolean</UpdateWorkspaceResult> <errorMessage>string</errorMessage> </UpdateWorkspaceResponse> </soap12:Body> 0%
Which of the following is not a ConceptShare Concepts API?
AddConcept 0%
AddUserToConceptApprovAl 0%
VoteOnConcept 0%
CreateConceptFromComment 0%
Which of the following is not a ConceptShare Workspace API?
AddWorkspace 0%
AddWorkspaceMember 0%
AddWorkspaceMember2 0%
getWorkspaces 0%
Which of the following is the correct SOAP request body for calling RemoveWorkspaceMember API?
<soap:Body> <RemoveWorkspaceMember xmlns="ConceptShare.API"> <workspaceId>int</workspaceId> <userId>int</userId> </RemoveWorkspaceMember> </soap:Body> 0%
<soap:Body> <RemoveWorkspaceMember xmlns="ConceptShare.API"> <userId>int</userId> </RemoveWorkspaceMember> </soap:Body> 0%
<soap:Body> <RemoveWorkspaceMember xmlns="ConceptShare.API"> <userId>int</userId> <firstName>int</firstName> <lastName>int</lastName> </RemoveWorkspaceMember> </soap:Body> 0%
<soap:Body> <RemoveWorkspaceMember xmlns="ConceptShare.API"> <userId>int</userId> <emailAddress>int</emailAddress> </RemoveWorkspaceMember> </soap:Body> 0%
Which of the following is the correct SOAP request body for calling the DisableWorkspace API?
<soap:Body> <DisableWorkspace xmlns="ConceptShare.API"> <workspaceId>int</workspaceId> <conceptId>int</conceptId> <commentId>int</commentId></DisableWorkspace> </soap:Body> 0%
<soap:Body> <DisableWorkspace xmlns="ConceptShare.API"> <workspaceId>int</workspaceId> </DisableWorkspace> </soap:Body> 0%
<soap:Body> <DisableWorkspace xmlns="ConceptShare.API"> <workspaceId>int</workspaceId> <conceptId>int</conceptId> <taskId>int</taskId> </DisableWorkspace></soap:Body> 0%
<soap:Body> <DisableWorkspace xmlns="ConceptShare.API"> <conceptId>int</conceptId> <commentId>int</commentId> </DisableWorkspace> </soap:Body> 0%
Which of the following is the correct SOAP response body that is returned by the SetConceptPermissions API?
<soap:Body> <SetConceptPermissionsResponse xmlns="ConceptShare.API"> <SetConceptPermissionsResult>boolean</SetConceptPermissionsResult> <errorMessage>string</errorMessage> </SetConceptPermissionsResponse> </soap:Body> 0%
<soap12:Body> <SetConceptPermissionsResponse xmlns="ConceptShare.API"> <SetConceptPermissionsResult>boolean</SetConceptPermissionsResult> <errorMessage>string</errorMessage> </SetConceptPermissionsResponse> </soap12:Body> 0%
Both a and b are correct 0%
Which of the following lines from a SOAP 1.1 request contains an error? 1.<?xml version="1.0" encoding="utf-8"?> 2.<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmln...
Line 5 0%
Line 6 0%
Line 11 0%
Line 12 0%