Delete Block

Prev Next
DELETE : https://{env}-api.xebo.ai/v3/survey-management/surveys/{survey_id}/blocks/{block_id}

The value of environment {{env}} variable depends upon your datacenter. Refer to the Environment page for more details.

Headers

"Content-Type": "application/json"

Authorization

type: Bearer type 
token: <access token> granted from login API 
Or 
x-api-key: <api key copied from the platform> 
Content-Type: application/json 

Payload

{ 
    "title": "delete-questions" 
 } 

Key

Type

Mandatory

Description

title

string

yes

Title of the block. Static value: “delete-questions”

cURL

curl --location --request DELETE 'https://az4-api.xebo.ai/v3/survey-management/surveys/951381d4-e7d1-4e5a-85f1-be379b18045a/blocks/ddba1c08-de89-4106-ac0d-90c86744708c' \ 
--header 'Content-Type: application/json' \ 
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
--data '{  
  "type": "delete-questions"  
} ' 

JavaScript

var data = JSON.stringify({ 
   "type": "delete-questions" 
 }); 

 var xhr = new XMLHttpRequest(); 
 xhr.withCredentials = true; 
 xhr.addEventListener("readystatechange", function() { 

   if(this.readyState === 4) { 
     console.log(this.responseText); 
   } 
 }); 

 xhr.open("DELETE", "https://az4-api.xebo.ai/v3/survey-management/surveys/951381d4-e7d1-4e5a-85f1-be379b18045a/blocks/ddba1c08-de89-4106-ac0d-90c86744708c"); 
 xhr.setRequestHeader("Content-Type", "application/json"); 
 xhr.setRequestHeader("Authorization", "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"); 

 xhr.send(data);

Responses

{ 
  "data": "Block deleted successfully" 
} 
 { 
   "success": false, 
   "code": 401, 
   "status": "Unauthorized", 
   "error": "AUTHENTICATION_ERROR", 
   "message": "The authorization token was not provided" 
 } 
{ 

   "success": false, 
   "code": 500, 
   "status": "Internal Server Error", 
   "error": "SERVER_ERROR", 
   "message": "Error in processing your request" 

 }

Note: Please do not share your tokens in publicly accessible areas or to anyone. Also, this token generated is valid for 24 hours only. After its expiry, you can regenerate the access token from the same API endpoint by passing the username and password or from the refresh token API with the help of refresh token.

Ask a human

Can't Find What You're Looking For?

Email Support       Chat With Us      Ticket Generate