# Notify multiple intents in bulk

## POST /intents/bulk\_notify\_intent

> Notify multiple intents in bulk

```json
{"openapi":"3.0.3","info":{"title":"Back in Stock Intents API","version":"1.0.0"},"servers":[{"url":"https://app.stoqapp.com/api/v1/external","description":"Production server"}],"security":[{"ApiKeyAuth":[]}],"components":{"securitySchemes":{"ApiKeyAuth":{"type":"apiKey","in":"header","name":"X-Auth-Token"}}},"paths":{"/intents/bulk_notify_intent":{"post":{"summary":"Notify multiple intents in bulk","tags":["Intents"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"intent_ids":{"type":"array","items":{"type":"string"},"description":"Array of intent IDs"},"allow_resend":{"type":"boolean","description":"Allow resending notifications"}}}}}},"responses":{"200":{"description":"All notifications sent successfully","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"array","items":{"type":"string"}},"failed":{"type":"array","items":{"type":"object","properties":{"intent_id":{"type":"string"},"error":{"type":"string"}}}}}}}}},"207":{"description":"Partial success (some notifications failed)","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"array","items":{"type":"string"}},"failed":{"type":"array","items":{"type":"object","properties":{"intent_id":{"type":"string"},"error":{"type":"string"}}}}}}}}},"400":{"description":"Bad request"},"401":{"description":"Unauthorized"}}}}}}
```
