Skip to content

Commit

Permalink
test(api): correct query string parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed May 17, 2024
1 parent 3306d85 commit a136245
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions test/api tool/featureClassAttributes.v1.rest
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,20 @@
@apiKey = apikey=agrc-dev
@base = http://{{host}}/api/v1/info/fieldnames/


###
GET {{base}}county_boundaries?category=boundaries&{{apiKey}}
###
GET {{base}}county_boundaries?{{apiKey}}
###
GET {{base}}county_boundaries?sgidCategory=BOUNDaries&{{apiKey}}
GET {{base}}county_boundaries?category=BOUNDaries&{{apiKey}}
### old microsoft name
GET {{base}}counties?sgidCategory=BOUNDaries&{{apiKey}}
GET {{base}}counties?category=BOUNDaries&{{apiKey}}
### not found
GET {{base}}counties?{{apiKey}}
### wrong category
GET {{base}}county_boundaries?sgidCategory=transportation&{{apiKey}}
GET {{base}}county_boundaries?category=transportation&{{apiKey}}
### Validation Error
GET {{base}}county_boundaries?sgidCategory=invalid&{{apiKey}}
GET {{base}}county_boundaries?category=invalid&{{apiKey}}
### validation error
GET {{base}}boundaries.county_boundaries?{{apiKey}}

0 comments on commit a136245

Please sign in to comment.