Add Monday.com credentials and API docs

This commit is contained in:
Tiago Ribeiro 2026-02-26 13:08:56 -03:00
parent 291c0c812c
commit f94ec29d2b
2 changed files with 28 additions and 0 deletions

View file

@ -47,6 +47,7 @@ Todas as credenciais estão em `~/.ssh/`:
| absam-db-novo | Senha SSH Absam DB | | absam-db-novo | Senha SSH Absam DB |
| absam-token | API Token Absam | | absam-token | API Token Absam |
| mxroute-api-key | API Key MXRoute Email | | mxroute-api-key | API Key MXRoute Email |
| monday.env | Token Monday.com API |
## Comandos Úteis ## Comandos Úteis

View file

@ -17,6 +17,7 @@ Documento de referencia rapida para conexao aos servicos e servidores.
| `github-token` | Token | GitHub PAT | | `github-token` | Token | GitHub PAT |
| `absam-db-novo` | Credenciais | Absam DB | | `absam-db-novo` | Credenciais | Absam DB |
| `absam-token` | Token | Absam API | | `absam-token` | Token | Absam API |
| `monday.env` | Token | Monday.com API |
**Backup:** `s3://rede5/vault/ssh/` **Backup:** `s3://rede5/vault/ssh/`
@ -247,6 +248,31 @@ curl -X GET "https://api.mxroute.com/accounts/<dominio>" \
--- ---
## Monday.com
| Propriedade | Valor |
|-------------|-------|
| Token | `~/.ssh/monday.env` |
| Board ID | `18400111746` |
| Account | dhgabriel888's Team |
```bash
# Carregar credenciais
source ~/.ssh/monday.env
# Testar API
curl -s -H "Authorization: $MONDAY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "{ me { id name email } }"}'
# Listar tasks do board
curl -s -H "Authorization: $MONDAY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "{ boards(ids: '$MONDAY_BOARD_ID') { items_page { items { id name state } } } }"}'
```
---
## SSH Config ## SSH Config
Hosts configurados em `~/.ssh/config`: Hosts configurados em `~/.ssh/config`:
@ -268,6 +294,7 @@ Host absam-io # db-60604.dc-us-1.absamcloud.com (PostgreSQL)
| Coolify Redbull | https://redbull.rede5.com.br | | Coolify Redbull | https://redbull.rede5.com.br |
| Absam Console | https://cloud.absam.io | | Absam Console | https://cloud.absam.io |
| Cloudflare Dashboard | https://dash.cloudflare.com | | Cloudflare Dashboard | https://dash.cloudflare.com |
| Monday.com | https://dhgabriel888s-team.monday.com/boards/18400111746 |
--- ---