NAiOS IconNAiOS Logo
Volver al catálogo

DEV Community

devto

DEV Community (dev.to) is a community of software developers where you can publish articles, engage with others, and build your online presence.

Acciones
28
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

Acciones disponibles (28)

Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.

Create ArticleDEVTO_CREATE_ARTICLEAcción

Create a new article on DEV Community. Use this action to create a new article on behalf of the authenticated user. The article can be published immediately by setting published=true, or saved as a draft by setting published=false (which is the default). Required fields are title and body_markdown. Optional fields include description, main_image, tags, series, canonical_url, and organization_id.

Parámetros de entrada

  • tagsstring[]

    Array of tag names for the article. Maximum 4 tags.

  • titlestringObligatorio

    The title of the article.

  • seriesstring

    The name of the series this article belongs to.

  • publishedboolean

    Whether to publish the article immediately. Set to false to save as a draft (default).

  • main_imagestring

    URL of the main cover image for the article.

  • descriptionstring

    A brief description of the article (used for preview text and SEO).

  • body_markdownstringObligatorio

    The body content of the article in Markdown format.

  • canonical_urlstring

    Canonical URL if the article is crossposted elsewhere.

  • organization_idinteger

    The ID of the organization to publish the article under. Must be a member of the organization.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Article By IDDEVTO_GET_ARTICLEAcción

Returns a single published article by its ID, including full body content. Use this action when you know the unique ID of the article you want to retrieve. The response includes complete article details such as title, full HTML and markdown body content, author information, reaction counts, comments count, and reading time.

Parámetros de entrada

  • idintegerObligatorio

    The unique identifier of the article to retrieve

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Article By PathDEVTO_GET_ARTICLE_BY_PATHAcción

Returns a single published article by username and slug path. Use this action when you know the username of the author and the article's slug. The response includes full article details including title, content, author info, reactions count, comments count, and reading time.

Parámetros de entrada

  • slugstringObligatorio

    The slug of the article (the URL-friendly path segment)

  • usernamestringObligatorio

    The username of the article author

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Comment by IDDEVTO_GET_COMMENTAcción

Returns a single comment and its descendants (replies) by comment ID. Use this action when you need to retrieve a specific comment along with all its replies from DEV Community. The response includes the comment content, author information, and nested child comments. Note: The comment ID is the id_code field (e.g., "1", "32k5a"), not the numeric user_id.

Parámetros de entrada

  • idstringObligatorio

    The comment ID code

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Current UserDEVTO_GET_CURRENT_USERAcción

Tool to get the currently authenticated user's profile information. Use when you need to retrieve the profile of the user associated with the provided API key. Returns user details including username, name, bio, location, and profile image.

Parámetros de entrada

Sin parámetros.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get ListingDEVTO_GET_LISTINGAcción

Returns a single classified listing by its ID. Use this action to retrieve detailed information about a specific listing on DEV Community, including the title, description, category, tags, and information about the user who posted it.

Parámetros de entrada

  • idintegerObligatorio

    The ID of the listing to retrieve

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get OrganizationDEVTO_GET_ORGANIZATIONAcción

Returns a single organization by its username. Use this action when you need to retrieve organization profile information from DEV Community. Returns organization details including name, summary, social links, and profile image.

Parámetros de entrada

  • usernamestringObligatorio

    The organization username (e.g., 'devteam')

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Profile ImageDEVTO_GET_PROFILE_IMAGEAcción

Returns the profile image URL for a user or organization by username. Use this action to retrieve the profile picture(s) for a specific user or organization on DEV Community. The API returns both the full-size image URL and a 90px thumbnail.

Parámetros de entrada

  • usernamestringObligatorio

    The username of the user or organization to get the profile image for.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get userDEVTO_GET_USERAcción

Tool to get a single user by their ID or username. Use when you need to retrieve user profile information from DEV Community. Returns user details including username, name, bio, location, and profile image.

Parámetros de entrada

  • idstringObligatorio

    The user ID or username. Can be a numeric user ID (e.g., '1') or a username (e.g., 'ben').

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List ArticlesDEVTO_LIST_ARTICLESAcción

Returns a list of published articles, optionally filtered by tags, username, state, or top articles. Supports pagination. Use when you need to browse or search for articles on DEV Community. Examples: - Get latest articles: omit all filters - Get articles by tag: set tag="javascript" - Get top articles: set state="all" and top=7 - Get rising articles: set state="rising" - Get articles from user: set username="ben"

Parámetros de entrada

  • tagstring

    Filter by a single tag name

  • topinteger

    Return top articles from last N days (requires state=all)

  • pageinteger

    Pagination page number

  • tagsstring

    Filter by multiple tag names (comma-separated)

  • statestringenum

    Filter by article state.

    freshrisingall
  • per_pageinteger

    Number of items per page (default 30, max 1000)

  • usernamestring

    Filter by username (articles from a specific user)

  • tags_excludestring

    Exclude articles with these tags (comma-separated)

  • collection_idinteger

    Filter by collection ID

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List CommentsDEVTO_LIST_COMMENTSAcción

Tool to list comments for a specified article or podcast episode on DEV Community. Use when you need to retrieve all comments for a particular article or podcast episode. Requires either a_id (article ID) or p_id (podcast episode ID) parameter.

Parámetros de entrada

  • a_idinteger

    Article ID to get comments for. Provide either a_id or p_id, but not both.

  • p_idinteger

    Podcast episode ID to get comments for. Provide either a_id or p_id, but not both.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Followed TagsDEVTO_LIST_FOLLOWED_TAGSAcción

Returns a list of tags followed by the authenticated user. Use this action to retrieve the tags that the currently authenticated user has followed on DEV.to. The response includes the tag ID, name, and points.

Parámetros de entrada

Sin parámetros.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List FollowersDEVTO_LIST_FOLLOWERSAcción

Tool to retrieve a list of users who follow the authenticated user. Supports pagination with 80 followers per page by default. Use when you need to see who is following the authenticated user's profile.

Parámetros de entrada

  • pageinteger

    Pagination page number.

  • sortstring

    Sort order. Use 'created_at' for newest first.

  • per_pageinteger

    Number of items per page. Default is 80, maximum is 100.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List latest DEV Community articlesDEVTO_LIST_LATEST_ARTICLESAcción

Tool to retrieve a list of published articles sorted by descending publish date. Use when you need to fetch the latest articles from DEV Community with pagination support. Returns articles with full details including author info, tags, and engagement metrics.

Parámetros de entrada

  • pageinteger

    Pagination page number

  • per_pageinteger

    Number of items per page (default 30, maximum 1000)

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List ListingsDEVTO_LIST_LISTINGSAcción

Returns a list of classified listings for jobs, mentors, products, etc. Use this action to browse available listings on DEV Community. Supports pagination and filtering by category to find specific types of listings (jobs, mentors, events, etc.).

Parámetros de entrada

  • pageinteger

    Page number for pagination. Defaults to 1 if not specified.

  • categorystringenum

    Categories available for classified listings on DEV.

    cfpeducationjobsmentorsproductsmenteesforsaleeventscollabsmisc
  • per_pageinteger

    Number of items per page. Defaults to 30 if not specified. Maximum allowed is 100.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Listings By CategoryDEVTO_LIST_LISTINGS_BY_CATEGORYAcción

Returns a list of classified listings filtered by category. Use this action to browse listings on DEV Community for a specific category (jobs, mentors, products, events, etc.). The category is a required path parameter. Supports pagination via page and per_page parameters.

Parámetros de entrada

  • pageinteger

    Page number for pagination. Defaults to 1 if not specified.

  • categorystringObligatorioenum

    Category to filter listings by. Options: cfp, education, jobs, mentors, products, mentees, forsale, events, collabs, misc.

    cfpeducationjobsmentorsproductsmenteesforsaleeventscollabsmisc
  • per_pageinteger

    Number of items per page. Defaults to 30 if not specified. Maximum allowed is 100.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Organization ArticlesDEVTO_LIST_ORGANIZATION_ARTICLESAcción

Tool to list articles published by a specific organization on DEV.to. Use when you need to retrieve all articles published by an organization. The results are paginated and can be filtered by page number and items per page.

Parámetros de entrada

  • pageinteger

    The page number for pagination

  • per_pageinteger

    The number of items per page (default is 30, max is 100)

  • usernamestringObligatorio

    The username of the organization

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List organization users on DEV.toDEVTO_LIST_ORGANIZATION_USERSAcción

Tool to list users belonging to a specified organization on DEV.to. Use when you need to retrieve all members/users of a particular organization. Returns a list of user objects with their profile information including username, name, profile image, and social links.

Parámetros de entrada

  • pageinteger

    Page number for pagination

  • per_pageinteger

    Number of items per page (default 30, max 100)

  • usernamestringObligatorio

    The organization's username on DEV.to

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List podcast episodes on DEV.toDEVTO_LIST_PODCAST_EPISODESAcción

Tool to retrieve a list of podcast episodes from DEV.to. Use when you need to browse or search for podcast episodes on DEV.to. Returns a list of podcast episodes, optionally filtered by podcast username. Supports pagination to navigate through large result sets.

Parámetros de entrada

  • pageinteger

    Pagination page number

  • per_pageinteger

    Number of items per page (default 30, max 100)

  • usernamestring

    Filter by podcast username (the podcast's slug/username)

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List DEVTO Reading ListDEVTO_LIST_READING_LISTAcción

Returns the articles in the authenticated user's reading list. Requires authentication via API key. The reading list contains articles that the authenticated user has saved for later reading.

Parámetros de entrada

  • pageinteger

    Page number for pagination.

  • per_pageinteger

    Number of items per page (default 30, max 100).

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List TagsDEVTO_LIST_TAGSAcción

Returns a list of tags with their names, background colors, and text colors. Use this action to retrieve available tags from DEV Community for filtering articles or discovering topics. Supports pagination to handle large numbers of tags.

Parámetros de entrada

  • pageinteger

    Page number for pagination. Defaults to 1 if not specified.

  • per_pageinteger

    Number of items per page. Defaults to 10 if not specified. Maximum allowed is 100.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List User All ArticlesDEVTO_LIST_USER_ALL_ARTICLESAcción

Tool to list all articles (both published and unpublished) for the authenticated user. Use when you need to retrieve all articles belonging to the authenticated user's account, including draft and unpublished articles.

Parámetros de entrada

  • pageinteger

    Pagination page number

  • per_pageinteger

    Number of items per page (default 30, max 100)

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List User ArticlesDEVTO_LIST_USER_ARTICLESAcción

Tool to list published articles for the authenticated user. Use when you need to retrieve only the published articles belonging to the authenticated user's account. For unpublished/draft articles, use the List User All Articles action instead.

Parámetros de entrada

  • pageinteger

    Pagination page number

  • per_pageinteger

    Number of items per page (default 30, max 100)

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List user's published articlesDEVTO_LIST_USER_PUBLISHED_ARTICLESAcción

Returns a list of the authenticated user's published articles only. Use when you need to retrieve articles that the current user has published on DEV Community. Supports pagination via page and per_page parameters.

Parámetros de entrada

  • pageinteger

    Pagination page number. Defaults to 1.

  • per_pageinteger

    Number of items per page. Defaults to 30. Maximum is 100.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List user's unpublished articlesDEVTO_LIST_USER_UNPUBLISHED_ARTICLESAcción

Returns a list of the authenticated user's unpublished (draft) articles. Use when you need to retrieve draft articles that have not yet been published. Supports pagination via page and per_page parameters.

Parámetros de entrada

  • pageinteger

    Pagination page number. Defaults to 1.

  • per_pageinteger

    Number of items per page. Defaults to 30. Maximum is 100.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List VideosDEVTO_LIST_VIDEOSAcción

Tool to retrieve a list of articles that contain videos. Use when you need to browse video content on DEV Community. Supports pagination via page and per_page parameters.

Parámetros de entrada

  • pageinteger

    Pagination page number

  • per_pageinteger

    Number of items per page (default is 24)

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update ArticleDEVTO_UPDATE_ARTICLEAcción

Update an existing article on DEV Community. Only the article owner can update it. Use this action to modify article properties like title, body content, description, cover image, tags, and publication status. Only provide the fields you want to update.

Parámetros de entrada

  • idintegerObligatorio

    The ID of the article to update.

  • tagsstring[]

    Array of tag names for the article.

  • titlestring

    The updated title of the article.

  • seriesstring

    The name of the series this article belongs to.

  • publishedboolean

    Whether the article should be published.

  • main_imagestring

    URL of the main cover image.

  • descriptionstring

    A brief description of the article.

  • body_markdownstring

    The updated body content in Markdown format.

  • canonical_urlstring

    Canonical URL for the article.

  • organization_idinteger

    Organization ID to assign the article to.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update ListingDEVTO_UPDATE_LISTINGAcción

Updates an existing classified listing on DEV Community. Use this action to modify a listing's title, body, category, tags, or status. The 'bump' action refreshes the listing's timestamp, 'publish' sets it to published, and 'unpublish' sets it to unpublished. Requires API key authentication.

Parámetros de entrada

  • idintegerObligatorio

    The ID of the listing to update.

  • tagsstring[]

    An array of tags for the listing.

  • titlestring

    The title of the listing.

  • actionstring

    Set to 'bump' to bump the listing, 'publish' to publish it, or 'unpublish' to unpublish it.

  • categorystring

    The category of the listing. Must be a valid category.

  • body_markdownstring

    The body content of the listing in Markdown format.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not