2019-04-05 22:12:27 +00:00
# API Docs
2019-09-10 17:41:04 +00:00
You can find Swagger docs but setting the path `/swagger-ui` to your Argo CD UI's. E.g. [http://localhost:8080/swagger-ui ](http://localhost:8080/swagger-ui ).
## Authorization
You'll need to authorize your API using a bearer token. To get a token:
```bash
$ curl $ARGOCD_SERVER/api/v1/session -d $'{"username":"admin","password":"password"}'
{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE1Njc4MTIzODcsImlzcyI6ImFyZ29jZCIsIm5iZiI6MTU2NzgxMjM4Nywic3ViIjoiYWRtaW4ifQ.ejyTgFxLhuY9mOBtKhcnvobg3QZXJ4_RusN_KIdVwao"}
```
2019-09-30 16:52:29 +00:00
> <=v1.2
Then pass using the HTTP `SetCookie` header, prefixing with `argocd.token` :
```bash
$ curl $ARGOCD_SERVER/api/v1/applications --cookie "argocd.token=$ARGOCD_TOKEN"
{"metadata":{"selfLink":"/apis/argoproj.io/v1alpha1/namespaces/argocd/applications","resourceVersion":"37755"},"items":...}
```
2019-10-21 23:54:23 +00:00
> v1.3
2019-09-30 16:52:29 +00:00
2019-09-10 17:41:04 +00:00
Then pass using the HTTP `Authorization` header, prefixing with `Bearer ` :
```bash
2019-09-30 16:52:29 +00:00
$ curl $ARGOCD_SERVER/api/v1/applications -H "Authorization: Bearer $ARGOCD_TOKEN"
2019-09-10 17:41:04 +00:00
{"metadata":{"selfLink":"/apis/argoproj.io/v1alpha1/namespaces/argocd/applications","resourceVersion":"37755"},"items":...}
```
2019-10-21 23:54:23 +00:00