Email Status
Retrieve the current status of a sent message using its ID.
SDK Examples
Node.js
const status = await contacted.getMessageStatus('550e8400-e29b-41d4-a716-446655440000');
console.log('Message status:', status.status);Python
status = contacted.get_message_status('550e8400-e29b-41d4-a716-446655440000')
print(f"Message status: {status['status']}")Authorizations
AuthorizationstringRequired
Your ContactedAI API key. Get yours at contacted.io
Use the Authorization header with Bearer scheme:
Authorization: Bearer CONTACTED_API_KEY_1234567890abcdef...
Query parameters
idstring · uuidRequiredExample:
The unique message ID returned from the send endpoint
550e8400-e29b-41d4-a716-446655440000Responses
200
Message status retrieved successfully
application/json
401
Unauthorized
application/json
404
Message not found
application/json
get
/messageLast updated