This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RestResource(urlMapping='/BoxRestAPI/V1/*') | |
global class BoxRest { | |
@HttpPost | |
global static void postItems () { | |
RestRequest req = RestContext.request; | |
RestResponse res = RestContext.response; | |
System.debug('[ Post req --> ]' + JSON.serializePretty( req ) ) ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "SFDX: Open Visualforce Page", | |
"type": "shell", | |
"command": "sfdx", | |
"args": [ | |
"force:org:open", | |
"--path", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"Create tasks": { | |
"prefix": "tasks.json", | |
"body": [ | |
"{", | |
" \"version\": \"2.0.0\",", | |
" \"tasks\": [", | |
" {", | |
" \"label\": \"SFDX: Open Visualforce Page\",", | |
" \"type\": \"shell\",", |