Skip to content

Commit

Permalink
fixed ports to be the same in all examples
Browse files Browse the repository at this point in the history
  • Loading branch information
fasseg committed Mar 19, 2013
1 parent 3e5ba28 commit 0c3dd88
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -34,30 +34,30 @@ The webapp supports the following operations, and the fixity service will by def

### Get the first 50 fixity results

curl "http://localhost:8081/rest/results"
curl "http://localhost:8180/rest/results"

### Get fixity results by offset and length

curl "http://localhost:8081/rest/results/0/10"
curl "http://localhost:8180/rest/results/0/10"

### Get a specific fixity result

curl "http://localhost:8081/rest/results/testobj-1"
curl "http://localhost:8180/rest/results/testobj-1"

### Get general fixity statistics

curl "http://localhost:8081/rest/results/statistics/general"
curl "http://localhost:8180/rest/results/statistics/general"

### Get daily fixity statistics for the last 30 days

curl "http://localhost:8081/rest/results/statistics/daily"
curl "http://localhost:8180/rest/results/statistics/daily"

### Get fixity details for a specific fixity check

curl "http://localhost:8081/rest/results/details/1"
curl "http://localhost:8180/rest/results/details/1"

### Queue a pid for a fixity check (hacky via url param atm)

curl -X POST "http://localhost:8081/rest/results/queue?pid=testobj-1"
curl -X POST "http://localhost:8180/rest/results/queue?pid=testobj-1"


0 comments on commit 0c3dd88

Please sign in to comment.