{"files":{"SKILL.md":"---\nname: d7sms\ndescription: \"D7SMS API skill. Use when working with D7SMS for balance, send, sendbatch. Covers 3 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# D7SMS\nAPI version: 1.0.2\n\n## Auth\nbasic\n\n## Base URL\nhttps://rest-api.d7networks.com/secure\n\n## Setup\n1. Configure auth: basic\n2. GET /balance -- verify access\n3. POST /send -- create first send\n\n## Endpoints\n\n3 endpoints across 3 groups. See references/api-spec.lap for full details.\n\n### balance\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /balance | Balance |\n\n### send\n| Method | Path | Description |\n|--------|------|-------------|\n| POST | /send | SendSMS |\n\n### sendbatch\n| Method | Path | Description |\n|--------|------|-------------|\n| POST | /sendbatch | Bulk SMS |\n\n## Common Questions\n\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"List all balance?\" -> GET /balance\n- \"Create a send?\" -> POST /send\n- \"Create a sendbatch?\" -> POST /sendbatch\n- \"How to authenticate?\" -> See Auth section\n\n## Response Tips\n- Check response schemas in references/api-spec.lap for field details\n- Create/update endpoints typically return the created/updated object\n\n## CLI\n\n```bash\n# Update this spec to the latest version\nnpx @lap-platform/lapsh get d7sms -o references/api-spec.lap\n\n# Search for related APIs\nnpx @lap-platform/lapsh search d7sms\n```\n\n## References\n- Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas\n\n> Generated from the official API spec by [LAP](https://lap.sh)\n","references/api-spec.lap":"@lap v0.3\n# Machine-readable API spec. Each @endpoint block is one API call.\n@api D7SMS\n@base https://rest-api.d7networks.com/secure\n@version 1.0.2\n@auth basic\n@endpoints 3\n@toc balance(1), send(1), sendbatch(1)\n\n@group balance\n@endpoint GET /balance\n@desc Balance\n@returns(200)\n@errors {500: Internal Server Error}\n\n@endgroup\n\n@group send\n@endpoint POST /send\n@desc SendSMS\n@required {Body: map # Message Body, Content-Type: any, Accept: any}\n@returns(200)\n@errors {500: Internal Server Error}\n\n@endgroup\n\n@group sendbatch\n@endpoint POST /sendbatch\n@desc Bulk SMS\n@required {Body: map # Message Body, Content-Type: any, Accept: any}\n@returns(200)\n\n@endgroup\n\n@end\n"}}