{ "opencollection": "1.0.0", "info": { "name": "MessageBird Balance Available Numbers Contacts API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Contacts", "type": "folder" }, "items": [ { "info": { "name": "List contacts", "type": "http" }, "http": { "method": "GET", "url": "https://rest.messagebird.com/contacts", "params": [ { "name": "offset", "value": "", "type": "query", "description": "The number of items to skip." }, { "name": "limit", "value": "", "type": "query", "description": "The maximum number of items to return." } ] }, "docs": "Retrieves a paginated list of all contacts in the address book." }, { "info": { "name": "Create a contact", "type": "http" }, "http": { "method": "POST", "url": "https://rest.messagebird.com/contacts", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new contact in the address book with the specified phone number and optional details." }, { "info": { "name": "View a contact", "type": "http" }, "http": { "method": "GET", "url": "https://rest.messagebird.com/contacts/:contactId", "params": [ { "name": "contactId", "value": "", "type": "path", "description": "The unique identifier of the contact." } ] }, "docs": "Retrieves the details of a specific contact by its unique identifier." }, { "info": { "name": "Update a contact", "type": "http" }, "http": { "method": "PATCH", "url": "https://rest.messagebird.com/contacts/:contactId", "params": [ { "name": "contactId", "value": "", "type": "path", "description": "The unique identifier of the contact." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing contact with the provided fields." }, { "info": { "name": "Delete a contact", "type": "http" }, "http": { "method": "DELETE", "url": "https://rest.messagebird.com/contacts/:contactId", "params": [ { "name": "contactId", "value": "", "type": "path", "description": "The unique identifier of the contact." } ] }, "docs": "Deletes a contact from the address book by its unique identifier." }, { "info": { "name": "List messages for a contact", "type": "http" }, "http": { "method": "GET", "url": "https://rest.messagebird.com/contacts/:contactId/messages", "params": [ { "name": "contactId", "value": "", "type": "path", "description": "The unique identifier of the contact." }, { "name": "offset", "value": "", "type": "query", "description": "The number of items to skip." }, { "name": "limit", "value": "", "type": "query", "description": "The maximum number of items to return." } ] }, "docs": "Retrieves all messages associated with a specific contact." } ] } ], "bundled": true }