Skip to content

Commit

Permalink
Added FreeAgent integration (#150)
Browse files Browse the repository at this point in the history
* Added Vimeo integration and fixed google sheets icon

* Added FreeAgent integration
  • Loading branch information
omnone committed Oct 9, 2020
1 parent df791db commit dbd31ce
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
25 changes: 25 additions & 0 deletions integrations/freeagent.json
@@ -0,0 +1,25 @@
{
"name": "FreeAgent",
"image": "https://www.freeagent.com/components/images/company/branding/freeagent-colour-logo-9f035bff.svg",
"auth": {
"authorizationURL": "https://api.freeagent.com/v2/approve_app",
"tokenURL": "https://api.freeagent.com/v2/token_endpoint",
"authType": "OAUTH2",
"tokenParams": { "grant_type": "authorization_code" },
"authorizationParams": {
"state": "{st=state123abc,ds=123456789}"
},
"auth": {
"response_type": "code"
}
},
"request": {
"baseURL": "https://api.freeagent.com/v2/",
"headers": {
"Accept": "application/json",
"Content-Type": "application/json",
"Authorization": "Bearer ${auth.accessToken}",
"User-Agent": "Pizzly"
}
}
}
1 change: 1 addition & 0 deletions integrations/index.ts
Expand Up @@ -11,6 +11,7 @@ import './dropbox.json'
import './eventbrite.json'
import './facebook.json'
import './freshbooks.json'
import './freeagent.json'
import './front.json'
import './full-contact.json'
import './github.json'
Expand Down

0 comments on commit dbd31ce

Please sign in to comment.