it is given that for accessing the inventory values the curll command is -:
curl -H "Authorization: Bearer {{Token}}" "https://{{subdomain}}.myspringboard.us/api/inventory/values?group\[\]=item_id&per_page=2"
if we try it then it is showing springboard encountered an internal error
The given command is wrong as we dont need [] after group .
The correct curl command will be -:
it is given that for accessing the inventory values the curll command is -:
curl -H "Authorization: Bearer {{Token}}" "https://{{subdomain}}.myspringboard.us/api/inventory/values?group\[\]=item_id&per_page=2"
if we try it then it is showing springboard encountered an internal errorThe given command is wrong as we dont need [] after group . The correct curl command will be -:
curl -H "Authorization: Bearer {{Token}}" "https://{{subdomain}}.myspringboard.us/api/inventory/values?group=item_id&per_page=2"